-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
68 lines (61 loc) · 1.29 KB
/
style.css
File metadata and controls
68 lines (61 loc) · 1.29 KB
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
.wrapper {
display: flex;
flex-wrap: wrap;
flex-direction: column;
gap: 15px;
min-height: 100vh;
}
.block-header {
text-align: center;
width: 100%;
color: white;
background-color: blue;
border: 5px darkblue solid;
border-radius: 5px;
}
.main-block {
display: flex;
flex: 1;
gap: 15px;
}
.block-sidebar {
width: 30%;
text-align: center;
background-color: cyan;
border: 5px aquamarine solid;
border-radius: 5px;
}
.block-content {
text-align: center;
width: calc(70% - 20px);
background-color: #ffecbd;
border: 5px #ffc943 solid;
border-radius: 5px;
display: flex;
flex-wrap: wrap;
flex-direction: column;
justify-content: space-between;
.items {
display: flex;
justify-content: space-around;
gap: 15px;
padding: 0px 15px 15px 15px;
.item {
background-color: #dcccff;
border: 5px #874fff solid;
border-radius: 5px;
text-align: center;
flex: 1;
max-width: 450px;
max-height: 100%;
aspect-ratio: 1 / 4;
}
}
}
.block-footer {
width: 100%;
text-align: center;
background-color: darkgray;
border: 5px gray solid;
border-radius: 5px;
}