-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
104 lines (88 loc) · 1.38 KB
/
style.css
File metadata and controls
104 lines (88 loc) · 1.38 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
95
96
97
98
99
100
101
102
103
104
* {
box-sizing: border-box;
margin: 0;
padding: 0;
cursor: default;
}
:root {
--main: #031430;
--second: #ef7d38;
}
::selection {
background: cyan;
color: var(--main);
}
:focus,
:active {
outline: none;
}
body {
width: 100%;
height: 100%;
overflow: hidden;
padding: 6vw;
font-family: -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
background: var(--main);
color: var(--second);
}
main {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 100%;
}
h1 {
font-size: 2.75rem;
}
span {
font-size: 3rem;
margin-bottom: 1.5rem;
}
p {
font-size: 1.75rem;
}
ol {
list-style-type: none;
font-size: 1.5rem;
}
li {
margin-bottom: 0.5rem;
}
.input {
display: flex;
flex-direction: column;
flex-wrap: wrap;
margin-top: 3rem;
}
input {
cursor: text;
color: var(--second);
font-size: 2rem;
background: inherit;
box-shadow: 0px 5px 0px 0px var(--second);
border: none;
margin-top: 3rem;
}
input:hover {
box-shadow: 0px 5px 0px 0px rgb(255, 198, 75);
color: rgb(255, 198, 75);
}
button {
border-radius: 0.1rem;
background: var(--second);
color: var(--main);
cursor: pointer;
border: none;
font-size: 2rem;
padding: 1.5rem 2rem;
margin-top: 2rem;
}
button:hover {
background: rgb(255, 198, 75);
}
@media (max-width: 600px) {
:root {
font-size: 10px;
}
}