-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
84 lines (71 loc) · 948 Bytes
/
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
body{
margin:0;
padding:0;
background:black;
color:white;
}
header{
margin-bottom:10px;
}
h1,h2{
margin:0;
padding:0;
text-align:center;
}
table{
margin:0 auto;
}
td{
width:170px;
height:170px;
border-radius:10px;
}
#menu{
width:80%;
background-color:red;
margin:0 auto 10px auto;
padding:3px 3px 15px 3px;
text-align:center;
}
#menu p{
position:relative;
}
#newgame{
float:left;
margin-left:25px;
position:relative;
bottom:4px;
}
#newgame:hover{
cursor:pointer;
}
#gamemode{
float:right;
margin-right:25px;
position:relative;
bottom:6px;
}
#score{
position: relative;
top:7px;
}
button{
background-color:blue;
font-size:22px;
font-family:sans-serif;
font-weight:bold;
color:white;
border:1px solid blue;
border-radius:4px;
padding:5px;
box-shadow: 2px 2px 1px rgb(28, 30, 33);
position:relative;
}
button:focus{
outline:0;
}
button:active{
top:2px;
left:2px;
box-shadow:0px 0px ;
}