-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathstyle.css
More file actions
94 lines (82 loc) · 1.41 KB
/
style.css
File metadata and controls
94 lines (82 loc) · 1.41 KB
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
html,
body {
margin: 0;
padding: 0;
width: 100%;
height: 100vh
}
body {
font-family: 'Segoe Ui', Helvetica, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
}
.main {
position: relative;
display: flex;
flex-direction: column;
align-items: center;
height: 100%;
width: 100vw;
background: #0f0e0a;
}
.main_container {
position: relative;
display: flex;
flex-direction: column;
align-items: left;
height: 100%;
}
@media screen and (min-width: 1140px) {
.main_container {
max-width: 1100px;
width: 100%;
}
}
@media screen and (min-width: 1139.98px) {
.main_container {
max-width: 900px;
width: 100%;
}
}
@media screen and (min-width: 939.98px) {
.main_container {
max-width: 700px;
width: 100%;
}
}
@media screen and (max-width: 719.98px) {
.main_container {
width: 100vw;
}
}
h1 {
font-style: normal;
font-weight: 200;
font-size: 300%;
line-height: 100%;
margin-bottom: 2%;
color: #efeff1
}
h4 {
margin: 0;
font-style: normal;
font-weight: 200;
color: #efeff1;
width: 100%;
border-bottom: 2px solid #fff;
margin-bottom: 1%;
}
a {
text-decoration: none;
color: #d30707;
}
a,
a:visited,
a:link,
.quasilink {
color: #a21313;
}
.main_container>div {
box-shadow: 2px 2px 2px #131313;
}