-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
81 lines (80 loc) · 1.63 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
*{
padding :0;
margin:0;
font-family:'Geneva',sans-serif;
}
.background{
height:900px;
background-image:url("play.jpg");
background-position: center;
background-size:cover;
background-repeat: no-repeat;
}
.BOX{
width:400px;
height:200px;
padding:10px;
border:5px solid white;
margin: auto;
background: black;
}
.heading1{
color:black;
font-size: 25px;
text-align: center;
margin-top: 0em;
margin-bottom: 0em;
background-color:khaki;
}
.heading2{
color :khaki;
font-size:25px;
text-align:center;
}
.heading3{
color :khaki;
font-size:25px;
text-align:center;
animation: glow 1s ease-in-out infinite alternate;
}
@-webkit-keyframes glow {
from {
text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e60073, 0 0 40px #e60073, 0 0 50px #e60073, 0 0 60px #e60073, 0 0 70px #e60073;
}
to {
text-shadow: 0 0 20px #fff, 0 0 30px #ff4da6, 0 0 40px #ff4da6, 0 0 50px #ff4da6, 0 0 60px #ff4da6, 0 0 70px #ff4da6, 0 0 80px #ff4da6;
}
}
#X{
background-color:#4CAF50;
border: none;
color:white;
text-align: center;
cursor:pointer;
font-size: 16px;
padding: 10px 32px;
border-radius: 8px;
margin-left:40px;
}
#O{
background-color:#4CAF50;
border: none;
color:white;
text-align: center;
cursor:pointer;
font-size: 16px;
padding: 10px 32px;
border-radius: 8px;
margin-left:55px;
}
.play{
background-color:#4CAF50;
border: none;
color:white;
text-align: center;
cursor:pointer;
font-size: 16px;
padding: 10px 32px;
border-radius: 8px;
margin-left:150px;
}