-
Notifications
You must be signed in to change notification settings - Fork 4
/
tic.css
63 lines (54 loc) · 1.37 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
/* CSS Code */
/* Heading */
body{
background-color: black;
}
h1 {
color: rgb(207, 175, 163);
font-size: 45px;
}
/* 3*3 Grid */
#b1, #b2, #b3, #b4, #b5,
#b6, #b7, #b8, #b9 {
width: 80px;
height: 52px;
margin: auto;
border: 1px solid rgb(255, 255, 255);
border-radius: 6px;
font-size: 30px;
text-align: center;
background-color: blanchedalmond;
}
/* Reset Button */
#but {
box-sizing: border-box;
width: 95px;
height: 40px;
border: 1px solid rgb(237, 184, 248);
margin: auto;
border-radius: 4px;
font-family: Verdana,
Geneva, Tahoma, sans-serif;
background-color: rgb(244, 131, 248);
color: white;
font-size: 20px;
cursor: pointer;
}
/* Player turn space */
#print {
font-family: Verdana,
Geneva, Tahoma, sans-serif;
color: rgb(10, 255, 104);
font-size: 20px;
}
/* Main Contianer */
#main {
text-align: center;
}
/* Game Instruction Text */
#ins {
font-family: Verdana,
Geneva, Tahoma, sans-serif;
color: rgb(247, 53, 46);
font-size: 17px;
}