-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle2.css
54 lines (47 loc) · 873 Bytes
/
style2.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
:root {
--background-color: #efefef;
--font-color: #111111;
}
html {
margin: 0;
min-height: 100%;
background: var(--background-color);
}
div, span, p {
color: var(--font-color);
font-family: "Times New Roman", serif;
}
@media screen and (min-width: 1001px) {
body, div, span, p {
font-size: 2.5vw;
line-height: 1.5em;
letter-spacing: 0.09em;
}
}
@media screen and (max-width: 1000px) {
body, div, span, p {
font-size: 5vw;
line-height: 1.5em;
letter-spacing: 0.09em;
}
}
a:link, a:visited, a:active, a:hover {
color: var(--font-color);
border-bottom: medium dotted var(--font-color);
padding: 1px 5px;
font-style: italic;
text-decoration: none;
}
.container {
width: 750px;
max-width: 90%;
margin-left: auto;
margin-right: auto;
}
.row {
width: 100%;
border: none;
margin-top: 125px;
margin-bottom: 125px;
text-align: justify;
}