-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
79 lines (68 loc) · 1.46 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
body {
background: rgb(243, 241, 239);
color: #323232;
font-weight: 300;
display: flexbox;
justify-content: center;
align-items:center;
text-align: center;
font-family: Helvetica, sans-serif;
background-image: url('background.jpg');
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
}
h1{
font-size: 50px;
}
h3{
color: rgb(75, 70, 70);
font-size: 25px;
}
.container {
display: flex;
justify-content: center;
height: 50vh;
}
.grid{
width: 200px;
height: 400px;
display: flex;
flex-wrap: wrap;
border: rgb(211, 223, 161);
border-style: solid;
background-color:rgb(242, 250, 228);
}
.grid div{
height: 20px;
width: 20px;
}
.mini-grid {
margin-left: 50px;
width: 80px;
height: 80px;
display: flex;
flex-wrap: wrap;
border: rgb(211, 223, 161);
border-style: solid;
background-color: rgb(236, 225, 225);
}
.mini-grid div {
height: 20px;
width: 20px;
}
#start-button{
background: rgb(43, 41, 41);
color: white;
display: inline-block;
padding: .5em 2.5em;
text-decoration: none;
cursor: pointer;
font-size: .8rem;
text-transform: uppercase;
letter-spacing: 2px;
transition: transform 200ms ease-in-out;
}
#start-button:hover {
transform: scale(1.2);
}