-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtic.css
83 lines (71 loc) · 1.18 KB
/
tic.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
@import url('https://fonts.googleapis.com/css?family=PT+Sans');
h1 {
font-family: 'PT Sans', sans-serif;
position: relative;
}
body {
font-family: 'PT Sans', sans-serif;
}
.center {
text-align: center;
}
.container {
position: relative;
}
hr {
border-top: 4px double;
}
#arena {
background-color: #dbdbdb;
max-width: 400px;
border-radius: 40px;
border: 10px solid #c4c5c6;
padding: 75px;
margin-top: 50px;
margin: 0 auto;
align-content:center;
position: relative;
overflow: hidden;
}
#status {
margin-left: 40px;
}
.cell {
background-color: white;
max-width: 30px;
margin: 0px;
padding: 50px;
border: 2px solid #dbdbdb;
font-color: black;
position: center;
cursor: pointer;
height: 5px;
width: 5px;
font-size: 40px;
text-align: center;
}
#col1, #col2, #col3 {
display: inline-block;
left: -50%;
float: left;
}
#col1 {
margin-left: 40px;
}
#cell4, #cell5, #cell6 {
float: center;
}
.cButton {
border-radius: 30px;
font-family: Arial;
color: #ffffff;
font-size: 100px;
background: #2881bd;
padding: 21px 60px 21px 60px;
text-decoration: none;
}
.cButton:hover {
background: #234961;
text-decoration: none;
cursor: pointer;
}