-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.css
executable file
·129 lines (111 loc) · 2.04 KB
/
main.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
125
126
127
128
129
:root {
--gray: rgb(138, 138, 138);
}
body {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: black;
}
* {
color: white;
font-family: 'Palanquin', sans-serif;
scrollbar-color: #E2E2E2BF black;
}
::-webkit-scrollbar {
width: 15px;
}
::-webkit-scrollbar-track {
background: none;
}
::-webkit-scrollbar-thumb {
background-color: #E2E2E2BF;
}
.button {
min-width: 200px;
padding: 20px;
border: var(--gray) 2px solid;
text-align: center;
text-transform: uppercase;
text-decoration: none;
color: rgba(226, 226, 226, 0.808);
font-family: "Helvetica Neue", Helvetica, sans-serif;
font-weight: 400;
letter-spacing: 2px;
background-size: 200% 100%;
background-position:left bottom;
transition: .2s;
font-size: 16px;
cursor: pointer;
}
.button:hover {
color: white;
}
.non-focus-button {
color: grey;
text-decoration: underline;
}
.maincontent {
max-width: 760px;
display: flex;
height: fit-content;
flex-direction: column;
align-items: center;
padding-left: 50px;
padding-right: 50px;
}
h1 {
font-weight: 700;
font-size: 100px;
text-align: center;
margin-top: 30px;
margin-bottom: -40px;
}
a {
text-decoration: none;
margin: 0;
cursor: pointer;
}
@media only screen and (max-width: 1000px) {
h1 {
font-size: 75px;
}
}
@media only screen and (max-width: 880px) {
h1 {
font-size: 65px;
margin-bottom: -30px;
}
}
@media only screen and (max-width: 700px) {
h1 {
font-size: 55px;
margin-bottom: -20px;
}
}
@media only screen and (max-width: 600px) {
h1 {
font-size: 45px;
}
}
@media only screen and (max-width: 500px) {
h1 {
font-size: 40px;
}
}
@media only screen and (max-width: 460px) {
h1 {
font-size: 35px;
}
.button {
padding: 15px;
font-size: 12px;
}
}
@media only screen and (max-width: 340px) {
h1 {
font-size: 32px;
}
}