-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
70 lines (59 loc) · 879 Bytes
/
style.css
File metadata and controls
70 lines (59 loc) · 879 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
64
65
66
67
68
69
70
/* Reset Manual */
body,
div {
padding: 0;
margin: 0;
}
body {
box-sizing: border-box;
-ms-overflow-style: none;
scrollbar-width: none;
}
body::-webkit-scrollbar {
display: none;
}
.flex {
display: flex;
width: 100%;
}
.flex-item {
flex: 1 0 100%;
display: flex;
justify-content: center;
align-content: center;
}
.container-grid {
display: grid;
grid-template-columns: repeat(4, 150px);
margin: 0 auto;
padding: 60px 60px;
gap: 20px;
}
.grid-item {
background: #ccc;
width: 100%;
min-height: 200px;
}
.item-1 {
grid-column: 1 / 3;
grid-row: 1 / 3;
}
.item-2 {
grid-column: 3 / 5;
grid-row: 1;
}
.item-x {
grid-column: span 2;
}
button {
display: block;
width: 50px;
height: 50px;
border: none;
background: tomato;
color: #fff;
border-radius: 50%;
font-size: 2em;
margin: 0 auto;
cursor: pointer;
}