-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflex.css
More file actions
46 lines (46 loc) · 890 Bytes
/
flex.css
File metadata and controls
46 lines (46 loc) · 890 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
.header{
border: 10px;
font-size: 60px;
font-style: oblique;
font-family: cursive;
text-align: center;
background-color: chartreuse;
}
.grid-container{
display: grid;
color: grey;
background-color: rgb(124, 177, 159);
grid-template-columns: 1rem;
grid-column: 1rem;
grid-row: 2rem;
}
li{
color: aqua;
}
i{
color: aquamarine;
}
h1{
text-decoration: underline;
}
.flex-container{
display: flex;
gap: 2rem;
}
div .item1{
background-color: burlywood;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
div .item2{
background-color: brown;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
div .item3{
background-color: bisque;
font-family: Arial, Helvetica, sans-serif;
}
div{
border-spacing: 2rem;
}
body{ background-color: blanchedalmond;
}