-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.css
More file actions
91 lines (76 loc) · 1.33 KB
/
Copy pathmain.css
File metadata and controls
91 lines (76 loc) · 1.33 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
@import url('https://fonts.googleapis.com/css?family=Poppins:400,700,900');
@import url('https://fonts.googleapis.com/css?family=Inconsolata');
body {
padding: 0;
font-family: 'Poppins', sans-serif;
position: relative;
}
article.main {
position: relative;
background-color: #2d2d2d;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
min-height: 600px;
}
img.brand {
width: 600px;
max-width: 90%;
margin-bottom: 50px;
}
div.content {
max-width: 90%;
text-align: center;
color: white;
}
h1 {
font-weight: 600;
font-size: 24px;
margin-bottom: 50px;
}
h2 {
font-size: 20px;
font-family: 'Inconsolata', monospace;
opacity: .5;
/* color: #b6a1c4; */
}
.separator {
margin-left: auto;
margin-right: auto;
display: block;
margin-top: 40px;
margin-bottom: 40px;
width: 10px;
height: 2px;
background-color: white;
}
.footer {
text-align: center;
max-width: 90%;
position: absolute;
z-index: 100;
bottom: 20px;
color: white;
}
a {
text-decoration: none;
/* color: #ff7bac; */
color: #b6a1c4;
}
a:hover {
/* color: #ff7bac; */
color: #b6a1c4;
text-decoration: none;
filter: brightness(130%);
}
ul {
list-style: inline;
padding: 0;
}
.list-inline li {
list-style: inline;
display: inline;
margin-left: 10px;
margin-right: 10px;
}