-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
63 lines (56 loc) · 863 Bytes
/
style.css
File metadata and controls
63 lines (56 loc) · 863 Bytes
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
font-family: "san-serif";
}
html {
font-size: 62.5%;
}
body {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.table {
border: none;
border-collapse: collapse;
}
.row,
.col {
border: 5px solid white;
height: 20rem;
width: 20rem;
}
.col {
font-size: 3rem;
font-weight: 900;
color: white;
text-align: center;
background-color: #f53b57;
cursor: pointer;
}
.white {
background-color: white;
color: white;
}
.steps {
margin-top: 5rem;
font-size: 5rem;
font-weight: bold;
color: #ef5777;
}
.steps-number {
font-weight: bold;
font-size: 4rem;
color: inherit;
}
.col:hover {
background-color: #f0657a;
transition: 1s;
}