-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
56 lines (50 loc) · 970 Bytes
/
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
*{
box-sizing: border-box;
margin: 0;
padding: 0;
}
section{
/* width: 90vw;
margin: 0 auto;
max-width: 1170px; */
text-align: center;
margin-top: 4rem;
}
.container{
width: 90%;
max-width: 960px;
margin: 0 auto;
height: 500px;
/* display: flex;
flex-wrap: wrap; */
display: grid;
/* grid-template-columns: repeat(16, 1fr); */
/* grid-auto-flow: column; */
/* grid-template-rows: repeat(16, 1fr); */
place-content: center;
/* gap: 0.5rem; */
}
.square{
background: black;
/* border: 2px solid white; */
/* color: aliceblue; */
}
.square:hover{
cursor: pointer;
}
.btn{
display: inline-block;
margin-bottom: 1rem;
padding: 0.75rem 1rem;
background: rgb(0, 136, 255);
color: aliceblue;
border: transparent;
border-radius: 0.5rem;
text-transform: capitalize;
font-size: 1rem;
margin-right: 1rem;
}
.btn:hover{
cursor: pointer;
background: rgb(52, 118, 176);
}