-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
116 lines (104 loc) · 2.12 KB
/
index.css
File metadata and controls
116 lines (104 loc) · 2.12 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
* {
margin: 0;
padding: 0;
}
body {
background-color: black;
display: flex;
flex-wrap: wrap;
flex-direction: column;
justify-content: center;
align-items: center;
width: 100%;
}
.board {
display: flex;
justify-content: center;
width: 510px;
flex-wrap: wrap;
flex-direction: row;
height: 500px;
border: solid 2px aqua;
align-items: center;
}
.cell {
width: 150px;
height: 150px;
background-color: aqua;
text-align: center;
font-size: 100px;
font-family: Arial, Helvetica, sans-serif;
}
#one, #four, #seven {
border-left: solid 20px black;
border-right: solid 20px black
}
#winBanner {
color: rgb(88, 224, 156);
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
font-size: 3rem;
display: none;
}
.button {
background-color: black;
color:white;
font-size: 2rem;
margin: 5px;
padding: 5px;
border-radius: 15px;
}
header {
display:flex;
flex-direction: row;
align-items: center;
justify-content: center;
border: solid black 2px;
background-color: aqua;
height: 5rem;
width: 100%;
}
.player {
color: white;
}
.form {
font-size: 1.5rem;
padding: 1rem;
}
.playerX {
position: absolute;
top: 200px;
left: 10%;
text-align: start;
font-size: 3rem;
color: aqua;
font-weight: bold;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.playerO {
position: absolute;
top: 200px;
right: 10%;
text-align: start;
font-size: 3rem;
color: aqua;
font-weight: bold;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.foot {
position: relative;
bottom: 0%;
display:flex;
flex-direction: column;
align-items: center;
justify-content: center;
border: solid black 2px;
background-color: aqua;
height: 4rem;
width: 100%;
color:black;
font-size: 1.2rem;
font-style: italic;
font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-weight: bold;
margin-top: 6.7rem;
}