-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
101 lines (83 loc) · 1.3 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
body {
background: #010100;
color: #ced1d5;
line-height: 24px;
}
p,
ol {
font-family: "Roboto Mono", monospace;
}
a {
color: #ced1d5;
text-decoration: underline;
text-underline-offset: 0.1em;
}
a:hover {
text-decoration: underline dotted;
}
#logo-header {
width: 30%;
margin-bottom: 2rem;
}
#hero-desc {
margin-bottom: 6rem;
font-family: "Roboto Mono", monospace;
font-size: 1.3rem;
line-height: 1.7rem;
}
#logo-footer {
width: 10%;
margin-top: 5rem;
}
#container {
margin: 0;
padding-left: 0.8rem;
padding-right: 0.8rem;
padding-top: 0.8rem;
}
#tag-line {
font-size: 3.1rem;
font-family: "Poppins", sans-serif;
line-height: 3.5rem;
}
h2 {
font-size: 2rem;
font-family: "Poppins", sans-serif;
margin-top: 4rem;
line-height: 2.6rem;
}
h3 {
font-family: "Poppins", sans-serif;
margin-top: 2rem;
}
@media (min-width: 1054px) {
#logo-header {
width: 20%;
margin-bottom: 2rem;
}
#container {
margin: auto;
width: 40%;
margin-top: 5em;
padding-bottom: 3rem;
}
h1 {
font-size: 5rem;
}
h2 {
font-size: 2.5rem;
}
#logo-footer {
width: 5%;
margin-top: 5rem;
}
}
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
background: #1a1a1a;
}
::-webkit-scrollbar-thumb {
background: #b1b1b1;
}