-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
105 lines (86 loc) · 1.75 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
html{height: 100vh; width: 100%;}
body{
background-color: lightgrey;
font-family: Quicksand;
padding: 0px;
margin: 0px;
}
nav{
background-color: lightblue;
box-shadow: black 2px 1px 5px;
text-align: center;
font-weight: bolder;
padding: 0.1em 2em;
margin: 0 auto;
}
.logo{
font-size: 1.5em;
}
ul{
list-style-type: none;
width: 100%;
min-width: 300px;
padding: 0;
}
li{
display: inline;
font-size: 1.5em;
padding: 0 2rem;
width: 33%;
}
a{
color: black;
}
.container{width: 100%; padding-top: 20px;}
.game-container{
margin: 0 auto;
text-align: center;
vertical-align: center;
}
.blocks{
height: 50px;
width: 50px;
border: 2px solid darkslategrey;
background-color: lightblue;
margin-bottom: 5px;
}
.correct{
background-color: lightgreen;
color: green;
}
.incorrect{
background-color: darkslategrey;
}
.in-word{
background-color: palegoldenrod;
color: darkgoldenrod;
}
input{
text-align: center;
font-size: 2em;
}
.keyboard-container{
width: 100%;
margin: 0 auto;
text-align: center
}
.key-row{margin: 5px 5px;}
.func-keys{min-width: 200px;}
button{
min-width: 40px;
min-height: 40px;
font-size: 1.15rem;
background-color: lightsteelblue;
box-shadow: black 2px 1px 2px;
border: 1px solid slategrey;
border-radius: 10px;
cursor: pointer;
}
.keys:active{
background-color: ghostwhite;
box-shadow: lightslategrey 1px 0 1px;
transform: translateY(2px);
}
#btn-play{background-color: forestgreen;}
#btn-del{background-color: darkgoldenrod;}
#function-keys{margin-top: 10px;}