-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
64 lines (55 loc) · 1.01 KB
/
styles.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
@font-face {
font-family: P2P;
src: url(/Assets/FONTS/PressStart2P-Regular.ttf);
}
body {
text-align: center;
font-family: P2P;
background-image: linear-gradient(rgb(10, 36, 99), #3e92cc);
}
html {
height: 100vh;
}
#chance {
margin: auto;
display: inline-block;
font-size: 48px;
color: #f8f7ff;
}
#main-grid {
padding-top: 3%;
margin: auto;
width: 384px;
height: 384px;
justify-content: center;
align-items: center;
display: grid;
grid-template-columns: repeat(3, 128px);
grid-template-rows: repeat(3, 128px);
}
.tiles {
background-color: #f8f7ff;
display: inline-block;
border: 4px solid #838996;
width: 124px;
height: 124px;
}
.X {
background-image: url(Assets/Icons/X_icon.png);
background-repeat: no-repeat;
}
.O {
background-image: url(Assets/ICONS/O_icon.png);
background-repeat: no-repeat;
}
button {
background-color: #838996;
color: rgb(10, 36, 99);
padding: 10px;
text-align: center;
font-family: P2P;
font-size: 24px;
}
#btn {
padding-top: 3%;
}