-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathbase.css
More file actions
36 lines (36 loc) · 720 Bytes
/
base.css
File metadata and controls
36 lines (36 loc) · 720 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
/* __________________________________ */
/* WARNING: Do not edit this document */
/* __________________________________ */
body {
padding: 60px 120px;
}
section {
border: 4px solid lightskyblue;
margin: 15px 0;
}
section div {
height: 100px;
width: 100px;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-family: 'Arial';
font-weight: bold;
font-size: 18px;
letter-spacing: 1.5px;
position: static;
top: auto;
left: auto;
bottom: auto;
right: auto;
}
section div:nth-child(1) {
background: lightcoral;
}
section div:nth-child(2) {
background: orange;
}
section div:nth-child(3) {
background: lightgreen;
}