-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
44 lines (37 loc) · 867 Bytes
/
style.css
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
* {
font-family: Arial, Helvetica, sans-serif;
margin: 0px;
font-style: normal;
font-size: 18px;
font-weight: normal;
text-decoration: none;
box-sizing: border-box
}
.custom-container {
display: flex;
justify-content: center;
align-items: center;
padding: 30px;
margin: 0;
}
/*about.html*/
#about-me-container, #about-plan-container, #about-anime-container {
height: 600px;
}
#about-me-container p, #about-plan-container p, #about-anime-container p {
font-size: 40px;
text-align: center;
max-width: 400px;
}
body {
background-image: url(../images/background/background.jpg);
}
#about-me-container {
background-color: #F8FE1E;
}
#about-plan-container {
background-color: #A7F816;
}
#about-anime-container {
background-color: #65F2FF;
}