-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
58 lines (51 loc) · 838 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
body {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: "Raleway";
background-color: #ffffff;
}
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 90vh;
}
input {
display: none;
padding-top: .7em;
width: 12rem;
outline: 0;
border-width: 0 0 1px;
border-color: rgb(143, 143, 143)
}
input:focus {
border-color: #333;
}
.code {
/* border: 1px solid red; */
margin-top: 0;
margin-bottom: 1.8rem;
font-size: 18em;
font-weight: 700;
line-height: 1;
color: #333333;
}
.key,
.press-key {
display: none;
font-size: 2em;
color: #706c61;
padding: 5px 13px;
border-radius: 3px;
background-color: rgb(230, 230, 230);
}
@media (max-width: 600px) {
.code {
font-size: 12em;
}
.key {
font-size: 1.6em;
}
}