-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
96 lines (81 loc) · 1.55 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
body {
background: rgb(102, 178, 255);
}
main {
max-width: 32rem;
padding: 2rem;
margin: auto;
}
h1, h3 {
text-align: center;
color: rgb(255, 255, 153);
}
#messageBox {
text-align: center;
color: rgb(255, 255, 153);
border: 2px solid rgb(255, 255, 153);
border-radius: 10px;
}
#difficulty {
height: 65px;
width: 140px;
border-radius: 10px;
font-size: 24px;
background-color: rgb(255, 255, 153);
color: #666;
padding-left: 20px;
}
.controls {
text-align: center;
}
.square {
display: inline-block;
width: 10em;
height: 80px;
text-align: center;
margin: 0;
padding: 0;
line-height: 75px;
color: rgb(255, 255, 153);
}
.left {
border-right: 1px solid rgb(255, 255, 153);
}
.right {
border-left: 7px solid rgb(255, 255, 153);
}
.top {
border-bottom: 1px solid rgb(255, 255, 153);
}
.bottom {
border-top: 7px solid rgb(255, 255, 153);
}
.v-middle {
border-right: 1px solid rgb(255, 255, 153);
border-left: 7px solid rgb(255, 255, 153);
}
.h-middle {
border-top: 7px solid rgb(255, 255, 153);
border-bottom: 1px solid rgb(255, 255, 153);
}
/* Buttons */
.button {
display: inline-block;
padding: 15px 25px;
font-size: 24px;
cursor: pointer;
text-align: center;
text-decoration: none;
outline: none;
color: #666;
background-color: rgb(255, 255, 153);
border: none;
border-radius: 15px;
box-shadow: 0 9px #999;
}
.button:hover {background-color: rgb(224, 224, 139)}
.button:active {
background-color: rgb(224, 224, 139);
box-shadow: 0 5px #666;
transform: translateY(4px);
}