-
Notifications
You must be signed in to change notification settings - Fork 0
/
tictactoe.css
83 lines (73 loc) · 1.7 KB
/
tictactoe.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
.box {
width: 300px;
height: 300px;
}
.eachBox {
outline: 2px solid #f64c72;
float: left;
height: 100px;
width: 100px;
display: flex;
align-items: center;
justify-content: center;
color:#da234a;
text-shadow: 1px 1px 2px rgb(73, 32, 13), 0 0 0.5em rgb(182, 14, 248);
}
.eachBox:hover{
border-color: #f1ff5c;
color: white;
box-shadow: 0.5em 0.5em 0.5em -0.4em #f1ff5c;
/* transform: translateY(-0.10em); */
cursor: pointer;
}
.grid {
display: flex;
justify-content: center;
}
h1{
/* color: #3500d3 ; */
color: #5cdb95;
text-align: center;
margin-top: 0.5em;
font-family: 'Roboto', sans-serif;
font-size: 45px;
text-shadow: 1px 1px 2px rgb(243, 33, 5), 0 0 1em rgb(182, 14, 248), 0 0 0.2em rgb(255, 0, 0);
}
button{
display: flexbox;
justify-content: center;
align-items: center;
background: none;
color: #ffa260;
border: 2px solid;
padding: 0.5em 0.8em;
font-size: 1em;
font-family: 'Roboto', sans-serif;
transition: all 0.25s;
border-radius: 0.5em;
}
button:hover{
border-color: #f1ff5c;
color: white;
box-shadow: 0 0.5em 0.5em -0.4em #f1ff5c;
transform: translateY(-0.10em);
cursor: pointer;
}
.reset {
text-align: center;
margin-top: 2em;
}
html {
background-color: #0c0032
/* background-color: #242582; */
}
.message {
margin:1em;
color:rgb(216, 224, 96);
text-align: center;
font-size: 20px;
font-weight: 700;
font-family: 'Roboto', sans-serif;
text-shadow: 1px 1px 2px rgb(243, 33, 5), 0 0 1em rgb(182, 14, 248), 0 0 0.2em rgb(255, 0, 0);
/* text-shadow: 1px 1px 2px red, 0 0 1em blue, 0 0 0.2em blue; */
}