-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathTic-Tac.css
More file actions
81 lines (62 loc) · 1.16 KB
/
Tic-Tac.css
File metadata and controls
81 lines (62 loc) · 1.16 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
* {
background-image: url('tic-tacbg.jpg');
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
}
/* Heading */
h1 {
color: orangered;
font-size: 45px;
}
/* 3*3 Grid */
#b1,
#b2,
#b3,
#b4,
#b5,
#b6,
#b7,
#b8,
#b9 {
width: 80px;
height: 52px;
margin: auto;
border: 4px solid #C400FF;
border-radius: 6px;
font-size: 30px;
text-align: center;
cursor: pointer;
}
/* Reset Button */
#but {
box-sizing: border-box;
width: 95px;
height: 40px;
border: 5px solid dodgerblue;
margin: auto;
border-radius: 20px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
color: gold;
font-size: 20px;
cursor: pointer;
}
#but:hover {
color: greenyellow;
}
/* Player turn space */
#print {
font-family: Verdana, Geneva, Tahoma, sans-serif;
color: #FAFF00;
font-size: 20px;
}
/* Main Container */
#main {
text-align: center;
}
/* Game Instruction Text */
#ins {
font-family: Verdana, Geneva, Tahoma, sans-serif;
color: rgb(2, 206, 53);
font-size: 17px;
}