-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
115 lines (107 loc) · 2.31 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
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
110
111
112
113
114
115
h1 {
text-align: center;
font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
color: #4b2452;
background-color:beige;
margin: 0%;
}
.small-grid-container {
display: grid;
justify-content: center;
grid-gap: 2px 2px;
grid-template-columns: 70px 70px 70px;
grid-template-rows: 70px 70px 70px;
background-color: #b1c4d4;
padding: 10px;
}
.grid-element {
background-color: #A9A9A9;
border: 2px solid black;
border-radius: 4px;
padding: 20px;
font-size: 30px;
text-align: center;
cursor: pointer;
}
.grid-container{
display: grid;
justify-content: center;
grid-gap: 2px 2px;
grid-template-columns: 80px 80px 80px 80px 80px;
grid-template-rows: 80px 80px 80px 80px 80px;
background-color: #b1c4d4;
padding: 10px;
font-size: 40px;
text-align: center;
}
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin: 1rem auto;
padding-top: 1rem auto;
}
.btn {
background: #fa8072;
border: none;
border-radius: 2px;
font-size: 1 rem;
outline: none;
cursor: pointer;
width: 60px;
height: 30px;
color: #301934;
float: right;
font-weight: bolder;
}
.btn:hover {
background: #301934;
border: 2px solid #fa8072;
transition: 200000ms;
transform: scale(1.1);
color: #fa8072;
}
.WIN {
background-color: #D3D3D3;
border: none;
border-radius: 4px;
padding: 30px;
font-size: 30px;
font-family: 'cascadia code';
text-align: center;
}
.score {
background-color: #D3D3D3;
border: none;
border-radius: 4px;
padding: 20px;
font-size: 20px;
font-family: 'cascadia code';
text-align: center;
}
.count {
background-color: #D3D3D3;
border: none;
border-radius: 4px;
padding: 30px;
font-size: 20px;
font-family: 'cascadia code';
text-align: center;
}
.timer {
background-color: #D3D3D3;
border: none;
border-radius: 4px;
padding: 30px;
font-size: 20px;
font-family: 'cascadia code';
text-align: right;
}
footer {
text-align: center;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
a {
text-decoration: none;
}