generated from nighthawkcoders/student_2025
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
87 lines (87 loc) · 1.54 KB
/
styles.css
File metadata and controls
87 lines (87 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
body {
font-family: 'Arial', sans-serif;
line-height: 1.6;
color: #333;
background: linear-gradient(135deg, #F6D365 10%, #FDA085 100%);
margin: 0;
padding: 0;
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
}
header {
background: #222;
color: #fff;
padding: 1rem 0;
text-align: center;
border-bottom: 5px solid #FDA085;
}
header h1 {
font-size: 2.5rem;
margin-bottom: 0;
}
#submenu {
margin-top: 1rem;
}
#submenu ul {
list-style: none;
padding: 0;
}
#submenu ul li {
display: inline;
margin: 0 1rem;
}
#submenu ul li a {
color: #FDA085;
text-decoration: none;
font-size: 1.2rem;
transition: color 0.3s;
}
#submenu ul li a:hover {
color: #F6D365;
text-decoration: underline;
}
main {
padding: 2rem 0;
}
section {
padding: 2rem;
background: #fff;
margin-bottom: 1rem;
border-radius: 15px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
section h2 {
font-size: 2rem;
margin-bottom: 1rem;
color: #333;
border-bottom: 2px solid #FDA085;
padding-bottom: 0.5rem;
}
button {
padding: 0.75rem 1.5rem;
border: none;
background: #FDA085;
color: #fff;
border-radius: 25px;
cursor: pointer;
font-size: 1rem;
transition: background 0.3s, transform 0.2s;
}
button:hover {
background: #F6D365;
transform: scale(1.05);
}
footer {
background: #222;
color: #fff;
text-align: center;
padding: 1rem 0;
border-top: 5px solid #FDA085;
}
footer p {
margin: 0;
font-size: 1rem;
}