-
Notifications
You must be signed in to change notification settings - Fork 0
/
game.css
executable file
·121 lines (117 loc) · 1.65 KB
/
game.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
112
113
114
115
116
117
118
119
120
121
body{
background-color: rgba(234, 235, 240, 0.918);
margin: 0px;
overflow-x: hidden;
}
#main{
float: left;
}
td{
width: 145px;
height: 145px;
border: 6px solid black;
transition: all 5s ease-out;
border-style: double;
}
tr{
width: 360px;
height:120px;
border: 4px solid black;
}
.sq{
text-align:center;
font-size: 95px;
transition:all 0.9s;
}
.record{
float: right;
padding: 100px;
}
#head{
background-color: rgb(64, 163, 190);
margin:0px auto;
height: 130px;
text-align: center;
font-size: 100px;
}
#s1{
border-top : hidden;
border-left: hidden;
}
#s2{
border-top: hidden;
}
#s3{
border-top: hidden;
border-right: hidden;
}
#s4{
border-left: hidden;
}
#s6{
border-right:hidden;
}
#s7{
border-left:hidden;
border-bottom:hidden;
}
#s8{
border-bottom: hidden;
}
#s9{
border-bottom: hidden;
border-right: hidden;
}
h3#message{
color: white;
transition:all 0.7s;
margin: 0px;
width: 100%;
text-align:center;
font-size: 22px;
margin:0 auto;
height: 30px;
padding-bottom: 0px;
}
h3#message:hover {
color:rgb(1,190,22);
}
h1{
font-family: 'Dosis', sans-serif;
}
.new{
color:#dc3545;
}
#nav{
background-color: grey;
padding:1px;
height: 35px;
}
.xum{
color: #dc3545;
transition: all 0.9s;
}
button#reset_game{
padding: 0px;
height:34px ;
border :0px;
color: white;
font-size: 20px;
margin:0 auto;
width: 100%;
background-color: grey;
}
button#reset_game:hover{
background-color:#dc3545;
color:white;
transition:all 0.8s;
}
*{
font-family: 'Josefin Sans', sans-serif;
}
@media (min-width:353px)and(max-width:565px){
h1#head{
font-size: 40px;
color:#dc3545;
}
}