-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
109 lines (107 loc) · 1.66 KB
/
style.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
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.coverpage {
background: url("./background.jpg");
background-size: cover;
}
.main {
text-align: right;
font-size: 80px;
padding-right: 10%;
color: forestgreen;
font-family: cursive;
}
.coverdiv {
float: right;
padding-right: 20%;
}
.mode {
margin-bottom: 5%;
height: 175px;
}
.motxt {
font-size: 2em;
background: indigo;
color: ivory;
text-decoration: none;
background-size: contain;
cursor: pointer;
}
.whole{
background-color:rgb(238, 171, 221);
}
.result{
padding-left: 40%;
}
.Sbod{
display: flex;
justify-content: center;
}
.container{
background-color: rgb(29, 140, 173);
margin: 30px;
padding: 20px;
border-radius: 20px;
}
.title{
font-size: 20px;
font-family: sans-serif;
text-align: center;
color: rgb(174, 207, 26);
}
.status-action{
display: flex;
justify-content: space-around;
margin: 10px;
color: rgb(56, 48, 48);
height: 20px;
}
.status span{
color: beige;
}
.reset{
cursor: pointer;
color: black;
}
.reset:hover{
color: bisque;
}
.game-grid{
background-color:darkslategray;
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(3, 1fr);
grid-gap: 10px;
}
.cell{
height: 100px;
width: 100px;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
color:dimgray;
background-color: rgb(29, 140, 173);;
}
.X::after{
content: '✖';
font-size: 80px;
}
.O::after{
content: '○';
color: beige;
font-size: 125px;
}
.result{
font-size: 40px;
color: rgb(5, 87, 18);
font-family: cursive;
justify-content: left;
padding-left: 43%;
}
.won::after{
color: brown;
}