-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
123 lines (101 loc) · 1.78 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
html {
font-size: 10px;
}
body {
font-family: 'Helvetica Neue', Arial, sans-serif;
font-size: 1.6rem;
line-height: 1.5;
color: #333;
margin: 0;
background: linear-gradient(to bottom, #f8f8f8, #e6e6e6);
}
h1 {
font-size: 3.5rem;
margin: 2rem 0;
}
h2 {
font-size: 2.5rem;
margin: 1.5rem 0;
}
a {
color: #007bff;
text-decoration: none;
transition: color 0.3s ease;
}
a:hover {
color: #0056b3;
}
#main {
margin: 3rem auto;
padding: 2rem;
border-radius: 10px;
background: #fff;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}
.text-center {
text-align: center;
}
img {
max-width: 100%;
display: block;
margin: 0 auto;
}
#img-div {
background: #f2f2f2;
padding: 1rem;
border-radius: 10px;
margin: 2rem 0;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}
#img-caption {
margin: 1rem 0;
font-style: italic;
color: #777;
}
#headline {
margin: 3rem 0;
}
ul {
max-width: 800px;
margin: 0 auto 2rem auto;
line-height: 1.6;
}
li {
margin: 1rem 0;
}
blockquote {
font-style: italic;
max-width: 800px;
margin: 0 auto 2rem auto;
padding: 1rem;
border-left: 5px solid #007bff;
background: #f2f2f2;
border-radius: 5px;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}
footer {
background-color: #333;
color: #fff;
padding: 1rem 0;
text-align: center;
}
#footer {
margin-top: 2rem;
}
#tribute-link {
font-weight: bold;
}
@media (max-width: 768px) {
h1 {
font-size: 2.5rem;
}
h2 {
font-size: 2rem;
}
ul {
max-width: 90%;
}
blockquote {
max-width: 90%;
}
}