-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
53 lines (46 loc) · 926 Bytes
/
style.css
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
body {
font-family: 'Helvetica Neue', Arial, sans-serif;
margin: 0;
padding: 0;
background: linear-gradient(to bottom right, #e0eafc, #cfdef3);
color: #333;
}
header {
background: linear-gradient(135deg, #007BFF, #0056b3);
color: white;
padding: 20px;
text-align: center;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
nav {
margin-top: 10px;
}
nav a {
color: white;
margin: 0 15px;
text-decoration: none;
transition: color 0.3s;
}
nav a:hover {
color: #ffdd57;
}
main {
padding: 30px;
max-width: 800px;
margin: 20px auto;
background: white;
border-radius: 8px;
box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}
footer {
text-align: center;
padding: 15px;
background: #f1f1f1;
border-top: 1px solid #ddd;
margin-top: 20px;
box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}
footer p {
margin: 0;
color: #555;
}