-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
111 lines (100 loc) · 1.48 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
108
109
110
111
body{
background-color:#232323;
margin: 0;
font-family: "Montserrat", "Avenir";
}
h1{
text-align: center;
line-height: 1.1;
font-weight: normal;
color: white;
background: steelblue;
margin: 0;
text-transform: uppercase;
padding: 20px 0;
}
#game {
font-size: 200%;
}
#stripe {
background: white;
height: 30px;
text-align: center;
color: #232323;
margin-bottom:0;
}
#message {
display: inline-block;
width: 30%;
font-weight: bold;
font-size: 20px;
}
#start , #mode{
height: 100%;
font-weight: 700;
color: steelblue;
padding: 0;
font-size: 20px;
}
#Select_mode , #Select_start{
width: 120px;
height: 100%;
outline: none;
font-weight: bold;
}
#Select_start{
width: 100px;
}
td{
font-size: 70px;
text-align: center;
color:#232323;
width:90px;
height:110px;
border-radius: 20% ;
background-color: #b7bbc9;
border: 5px solid #232323
}
.container{
display: flex;
align-items: flex-start;
}
.score{
color: white;
font-size: 20px;
text-align: center;
margin: 30px 50px;
align-self: flex-start;
visibility: hidden;
}
.points{
font-size: 30px;
font-weight: bolder;
}
table{
margin:15px auto;
}
button{
position: absolute;
font-size: 18px;
border-radius: 8px;
border: none;
text-align: center;
padding: 6.5px 20px;
background: #e7e7e7;
color: black;
}
#reset{
left: 37%;
}
#new{
left: 52%;
}
button:hover {
background-color: white;
color: black;
border: 3px solid steelblue;
}
td:hover{
border: 2px solid steelblue;
}