-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaboutstyle.css
More file actions
47 lines (41 loc) · 773 Bytes
/
aboutstyle.css
File metadata and controls
47 lines (41 loc) · 773 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
body, h1, h2, p {
margin: 0;
padding: 0;
font-family: 'Arial', sans-serif;
}
.header-container h1 {
background-color: #65B5FF;
color: black;
text-align: center;
padding: 20px 0;
font-size: 2em;
}
.header-container p {
background-color: #f9f9f9;
color: #333;
padding: 20px;
border: 2px solid #65B5FF;
text-align: center;
}
.content-container {
display: flex;
justify-content: space-between;
padding: 20px;
}
.section {
width: 30%;
text-align: center;
}
.section h2 {
background-color: #65B5FF;
color: black;
padding: 20px 0;
margin-bottom: 20px;
}
.section p {
background-color: #fff;
color: #333;
padding: 20px;
border: 2px solid #65B5FF;
min-height: 150px;
}