-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
82 lines (73 loc) · 1.5 KB
/
Copy pathstyle.css
File metadata and controls
82 lines (73 loc) · 1.5 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
body {
background: linear-gradient(to right, #a673fe, #9253ff, #792dfb);
}
* {
font-family: sans-serif;
}
.game {
height: 852px;
width: 393px;
text-align: center;
padding: 20px;
margin: auto;
justify-content: center;
}
.title {
padding-top: auto;
padding-bottom: auto;
padding-left: auto;
padding-right: auto;
margin-bottom: 5px;
background-color: rgb(105, 196, 173);
color: rgb(255, 255, 255);
font-size: 2.5em;
font-weight: 55;
text-align: center;
border-radius: 20px;
-webkit-text-fill-color: rgb(252, 213, 140);
}
.square {
height: 100px;
width: 100px;
margin: 5px;
background-color: rgb(0, 217, 255);
float: left;
justify-content: center;
justify-items: center;
font-size: 70px;
font-weight: 50;
color: white;
text-align: center;
align-items: translate(-50%, -50%);
text-transform: uppercase;
border-radius: 20px;
}
.squares {
margin-left: 33px;
}
#gameintitle {
color: white;
}
.square:hover {
background-color: #8cf0f0;
cursor: pointer;
}
.reset {
background-color: turquoise;
border-radius: 25px;
text-align: center;
border: 5px solid;
border-color: linear-gradient(#a673fe, #9253ff, #792dfb);
justify-content: center;
margin-left: -19px;
margin-top: 150px;
padding: 25px;
padding-left: 50px;
padding-right: 50px;
font-size: 1.5em;
-webkit-text-fill-color: rgb(0, 67, 67);
}
.reset:hover {
background-color: #8cf0f0;
cursor: pointer;
}