-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
83 lines (69 loc) · 1.11 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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-size: 30px;
}
.keyboard {
display: flex;
flex-direction: column;
margin: 5rem auto 1rem;
width: 80%;
}
.line {
display: flex;
justify-content: center;
}
.key {
line-height: 2rem;
border: 1px black solid;
border-right: 2px black solid;
border-bottom: 2px black solid;
width: 2rem;
text-align: center;
margin: .2rem;
}
.spacebar {
width: 10rem;
height: 2rem;
}
.blank {
border: none;
}
.textBoxContainer {
width: 100%;
margin: 1rem auto 1rem;
text-align: center;
}
.textBox {
border: 1px black solid;
width: 25rem;
resize: none;
scrollbar-color: black;
padding: 0.5rem;
height: 2.4rem;
text-transform: uppercase;
}
.crypTitle {
margin: 0 auto 0.75rem;
width: 100%;
}
.cryptic {
cursor: default;
}
.cryptic:focus {
outline: none;
}
.pressed {
background-color: yellow;
}
@keyframes flash {
0% {}
50% {background: yellow;}
100% {}
}
@media screen and (max-width: 750px) {
* {
font-size: 15px;
}
}