-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
72 lines (60 loc) · 1.18 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
/* style.css */
body {
background-color: #003366;
color: #FFFFFF;
}
h1 {
font-size: 24px; /* or any size you prefer */
font-family: 'Arial', sans-serif; /* or any font family you prefer */
text-align: center;
}
h2, h3 {
font-size: 20px;
font-family: 'Times New Roman', serif; /* or any font family you prefer */
color: #009900;
}
p {
line-height: 1.6;
}
img {
border: 5px solid #660066;
padding: 10px;
margin: 20px;
border-top-right-radius: 30px;
}
li {
display: inline-block;
margin-left: 50px;
}
.skip-link {
position: absolute;
top: -40px;
left: 0;
background: #000;
color: white;
padding: 10px;
z-index: 100;
}
.skip-link:focus {
top: 0;
}
.nav-link.active {
font-weight: bold;
text-decoration: underline;
}
.grid-container {
display: grid;
grid-template-columns: repeat(3, 1fr);
}
@keyframes slideIn {
from { transform: translateX(-100%); }
to { transform: translateX(0); }
}
.animation-element {
animation: slideIn 1s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.animation-element {
animation: none;
}
}