-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
124 lines (103 loc) · 2.04 KB
/
styles.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
124
:root {
--white-color: #E3DAC9;
--purple-color: #634960;
--dark-purple-color: #483646;
--light-purple-color: #856F7C;
--yellow-color: #C8AB37;
--dark-yellow-color :#735D23;
--gray-color: #222;
--black-color: #111;
--shadow-color: #000;
--standard-margin: 1vmin;
}
html {
height: 100%;
background: var(--black-color);
}
html, body {
margin: 0;
}
body {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-weight: 300;
font-size: 1rem;
font-style: normal;
color: var(--white-color);
}
.section-container {
display: flex;
justify-content: center;
flex-flow: column;
width: 90%;
margin-left: auto;
margin-right: auto;
}
.section {
width: 90vw;
margin-left: auto;
margin-right: auto;
padding: var(--standard-margin);
}
p {
line-height: 1.75em;
text-shadow: 0 0 0.25rem var(--shadow-color);
}
h1, h2, h3, h4 {
color: var(--yellow-color);
font-weight: normal;
text-shadow: 0 0 0.25rem var(--shadow-color);
}
h1 a:link {
color: var(--yellow-color);
text-decoration: none;
}
h1 a:visited {
color: var(--yellow-color);
}
h1 a:hover {
color: var(--yellow-color);
text-decoration: underline;
}
h1 a:active {
color: var(--dark-yellow-color);
}
a:link {
color: var(--light-purple-color);
text-decoration: underline;
}
a:visited {
color: var(--purple-color);
text-decoration: none;
}
a:hover {
color: var(--light-purple-color);
text-decoration: none;
}
a:active {
color: var(--purple-color);
}
img {
max-width:100%;
height: auto;
}
.icon {
display: flex;
justify-content: center;
margin-top: 2rem;
}
.icon svg {
height: 8rem;
width: 8rem;
position: relative;
fill: var(--white-color);;
-webkit-filter: drop-shadow(0 0 0.25rem var(--shadow-color));
filter: drop-shadow(0 0 0.25rem var(--shadow-color));
}
@media only screen and (min-width : 768px) {
.section-container {
width: 60%;
}
.section {
width: 640px;
}
}