-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
107 lines (88 loc) · 1.67 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
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
105
106
107
body {
box-sizing: border-box;
margin: 0;
font-family: montserrat, Roboto, Helvetica, sans-serif, ProximaNova-It; ProximaNova;
background-color: rgb(218, 218, 218);
padding: 20px;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
}
.gameControlsContainer{
margin: 0px 5px;
display: flex;
flex-direction: row;
align-items: center;
}
.shuffleIcon, .languageIcon {
width: 10px;
height: 10px;
cursor: pointer;
margin: 5px 20px 5px 2px;
}
.languageIcon {
margin: 5px 8px;
filter: grayscale(100%);
}
#language_pt_image{
filter: grayscale(0%);
}
.timer{
margin-left: 10px;
font-size: 11px;
font-weight: bold;
}
.lettersWrapper, .lettersContainer{
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.addButton{
width: 20px;
height: 20px;
margin: 10px 5px;
cursor: pointer;
}
.letterContainer{
margin: 5px;
}
.letterInput{
width: 30px;
height: 30px;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}
.resultsInfoContainer{
margin: 0 5px;
display: flex;
flex-direction: row;
align-items: center;
}
.resultsInfoContainer > div {
margin-left: 10px;
font-size: 9px;
}
.showResultsIcon {
width: 30px;
height: 30px;
cursor: pointer;
}
.resultsContainer{
margin: 10px 0;
display: flex;
flex-wrap: wrap;
display: none;
}
.wordContainer, .noResults{
font-size: 12px;
margin: 5px;
color: rgb(82, 82, 82);
text-decoration: none !important;
}
.wordContainer:hover{
cursor: pointer;
color: rgb(15, 15, 15);
}