-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
65 lines (58 loc) · 1.03 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
*,
*::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,
.copy-btn {
background-color: #fff;
color: #000;
border: #000;
padding: 0.5rem 1rem;
border-radius: 0.25rem;
box-shadow: 0px 4px 8px 0 rgba(0, 0, 0, 0.2);
}
.change-btn {
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;
}
.change-btn: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;
}
.copy-btn {
cursor: pointer;
}