-
Notifications
You must be signed in to change notification settings - Fork 5
/
style.css
122 lines (109 loc) · 2.6 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
@import url("https://fonts.googleapis.com/css2?family=Bakbak+One&family=Karla:wght@200;300;400;500;600;700&family=PT+Sans:wght@400;700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,900;1,800&family=Raleway:wght@100;200;300;400;500;600;700;800;900&display=swap");
html {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
background-color: whitesmoke;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
body {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-sizing: border-box;
box-sizing: border-box;
padding: 12px 24px;
width: 96vw;
border-radius: 8px;
-webkit-box-shadow: 20px 20px 80px;
box-shadow: 20px 20px 80px;
background: -webkit-gradient(linear, left top, left bottom, from(#2b2d2e), to(#1b1a1d));
background: linear-gradient(#2b2d2e, #1b1a1d);
}
#header, #section {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
width: 100%;
height: 4em;
}
#page-title {
text-align: center;
font-family: Raleway;
font-size: 4vw;
color: rgb(33, 33, 33);
margin: 8px;
background-color: #d8d8d8;
padding: 0 36px;
border-radius: 8px;
}
hr.top {
margin-bottom: 24px;
}
hr.bottom {
margin-top: 36px;
}
hr.line-1 {
border-color: whitesmoke;
width: 90vw;
}
hr.line-2 {
-ms-flex-item-align: left;
-ms-grid-row-align: left;
align-self: left;
border-color: #71777a;
width: 80vw;
}
#content {
font-family: Poppins;
color: whitesmoke;
}
#content > h1 {
font-weight: 500;
margin-top: 64px;
width: 100%;
text-align: center;
color: #e37933;
}
#content > h2 {
font-weight: 400;
}
.code {
font-family: cascadia code;
font-size: 1.1em;
color: #00caff;
}
#footer ul {
display: flex;
align-items: center;
justify-content: space-evenly;
}
#footer ul li {
display: inline;
color: rgb(255, 210, 81);
font-family: Karla;
}
/*# sourceMappingURL=style.css.map */