-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
94 lines (77 loc) · 1.26 KB
/
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
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
88
89
90
91
92
93
94
body {
font-family: Arial, sans-serif;
line-height: 1.6;
color: #333;
background-color: #f9f9f9;
margin: 0;
padding: 0 4rem;
}
header, main, footer {
padding: 2rem;
margin: 0 auto;
}
h1 {
color: #222;
margin-bottom: 1rem;
}
h2 {
color: #222;
margin-top: 1rem;
margin-bottom: 0.5rem;
border-bottom: 1.5px solid #ddd;
}
nav {
margin-top: 1rem;
margin-bottom: -2rem;
}
nav a {
color: #0066cc;
text-decoration: none;
margin-right: 0.3rem;
margin-left: 0.3rem;
}
nav a:first-child {
margin-left: 0;
}
nav a:hover {
text-decoration: underline;
}
section {
margin-bottom: 3rem;
max-width: 550px;
}
p {
margin-bottom: 1rem;
}
a {
color: #0066cc;
text-decoration: none;
transition: color 0.3s ease;
}
a:hover {
text-decoration: underline;
}
ul {
list-style-type: none;
padding-left: 0;
}
li {
margin-bottom: 0.5rem;
}
footer {
margin-top: -5rem;
color: #777;
font-size: 0.9rem;
}
footer p a {
color: #0066cc; /* Minimal blue for footer links */
}
footer p a:hover {
text-decoration: underline; /* Underline on hover for footer links */
}
@media (max-width: 600px) {
body {
padding: 0rem;
margin-top: -1rem;
}
}