-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
62 lines (54 loc) · 1.56 KB
/
Copy pathstyles.css
File metadata and controls
62 lines (54 loc) · 1.56 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
body {
background-color: blanchedalmond;
margin: 0; /* Remove default body margin */
padding: 0; /* Remove default body padding */
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
h1 {
text-align: center;
color: blueviolet;
background-color: white;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
font-size: 50px;
}
em {
color: brown;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
.flexbox-container {
display: flex;
height: auto; /* Remove fixed height to accommodate content */
align-items: center;
justify-content: center;
flex-direction: column;
}
.flexbox-item {
display: flex;
align-items: center;
justify-content: center;
width: 200px;
height: 200px;
margin: 10px;
border: 3px solid black;
background-color: bisque;
border-radius: 50%; /* Use 50% to make circles */
}
.flexbox-item-1 {
background-color: red;
color: white; /* Text color is white */
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
.flexbox-item-2 {
background-color: orange;
color: black;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
.flexbox-item-3 {
background-color: green;
color: white; /* Text color is white */
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
p {
text-align: left;
margin-top: auto;
}