This repository was archived by the owner on Oct 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy pathstyle.css
More file actions
118 lines (111 loc) · 2.04 KB
/
style.css
File metadata and controls
118 lines (111 loc) · 2.04 KB
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
html {
box-sizing: border-box;
}
* {
box-sizing: inherit;
}
.app {
font-family: 'Open Sans', sans-serif;
margin: 100px;
width: 500px;
margin-left: auto;
margin-right: auto;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.board {
position: relative;
width: 500px;
height:500px;
}
.cell {
float: left;
width: 33.3333%;
height: 33.3333%;
line-height: 166.67px;
color: black;
font-size: 90pt;
text-align: center;
border-color: orangered;
border-width: 3px;
}
.cell.top {
border-bottom-style:solid;
}
.cell.bottom {
border-top-style:solid;
}
.cell.left {
border-right-style:solid;
}
.cell.right {
border-left-style:solid;
}
.X{
animation-name: appear;
animation-duration: .3s;
}
.O{
animation-name: appear;
animation-duration: .3s;
animation-delay:.3s;
animation-fill-mode: forwards;
opacity: 0;
}
@keyframes appear {
from { font-size: 90pt; opacity: 0;}
to { font-size: 100pt; opacity: 1;}
}
.description{
cursor:pointer;
font-size:25px;
font-weight:bold;
padding:15px 0px;
position: relative;
display: inline-block;
width: 200px;
text-align: center;
margin-top: 30px;
margin-right: -35px;
}
.t1{
margin-left: 60px;
}
.t2{
margin-right: 60px;
}
.gameStateBar {
text-align: center;
font-size: 60px;
font-weight: bold;
height: 60px;
}
.restartBtn {
box-shadow: 3px 3px 9px 2px #54a3f7;
background-color:#007dc1;
border-radius:28px;
border:1px solid #124d77;
cursor:pointer;
color:#ffffff;
font-size:25px;
font-weight:bold;
padding:15px 36px;
text-decoration:none;
text-shadow:0px 0px 7px #154682;
position: relative;
display: block;
margin: 40px auto;
width: 160px;
text-align: center;
}
.restartBtn:hover {
background-color:#0061a7;
}
.restartBtn:active {
position:relative;
top:1px;
}