-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
112 lines (103 loc) · 2.01 KB
/
styles.css
File metadata and controls
112 lines (103 loc) · 2.01 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
body{
width: 100%;
height: 100%;
/* background: linear-gradient(45deg, red, blue); */
background-color: #485461;
background-image: linear-gradient(315deg, #485461 0%, #28313b 74%);
overflow: hidden;
min-height: 100vh;
}
.container{
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.welcome{
display: block;
text-align: center;
font-size: 50px;
font-weight: bold;
color: white;
/* text-transform: uppercase; */
margin-bottom: 20px;
}
.objective{
display: block;
text-align: center;
font-size: 20px;
color: rgb(208, 169, 169);
font-weight: bold;
/* text-transform: uppercase; */
margin-bottom: 20px;
}
.turn{
display: block;
text-align: center;
font-size: 20px;
font-weight: bold;
/* text-transform: uppercase; */
margin-bottom: 20px;
}
.circle{
width: 50px;
height: 50px;
border-radius: 50%;
border: 3px solid #000;
padding: 0px 0p 0px 0px;
background-color: gray;
display: flex;
justify-content: center;
align-items: center;
color: #fff;
margin: 2.5px;
font-size: 50px;
font-weight: bold;
text-transform: uppercase;
/* box-shadow: 0 0 0 10px #fff; */
animation: animate 1s linear infinite;
overflow: hidden;
}
td{
/* padding: 10%; */
/* margin: 10%; */
/* border: 1px solid red; */
align-items: center;
}
table{
/* border: 10px solid #000; */
/* display: grid; */
/* align-items: center;
justify-content: center; */
margin:0% 0% 0% 0%;
padding: 0% 0% 0% 0%;
}
.main-grid{
align-items: center;
justify-content: center;
place-items: center;
place-content: center;
display: grid;
}
.player1{
background-color: #ff0000;
color: #fff;
}
.player2{
background-color: blue;
color: #fff;
}
.hovering{
opacity: 50%;
/* background-color: #000; */
}
.error{
color: #ff0000;
}
.no-error{
color: #7dbdc1;
}
.winner{
color: green;
}