-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
59 lines (53 loc) · 993 Bytes
/
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
*,
*::before,
*::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
font-size: 16px;
background-color: #000;
width: 100vw;
height: 100vh;
}
.container {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 1rem;
}
input[type="text"],
input[type="text"]:disabled {
background-color: #fff;
color: #999;
border: #000;
padding: 0.5rem 1rem;
border-radius: 0.25rem;
}
button {
padding: 1rem 3rem;
outline: none;
background-color: #000;
color: #fff;
border: 1px solid #fff;
border-radius: 0.25rem;
font-size: 18px;
text-transform: uppercase;
letter-spacing: 1px;
cursor: pointer;
}
button:hover {
background-color: #fff;
color: #000;
border: 1px solid #000;
}
h1 {
text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff,
1px 1px 0 #fff;
text-align: center;
}