forked from appacademy/practice-for-prepwork-css-stylings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
42 lines (38 loc) · 751 Bytes
/
main.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
body {
padding: 0 25%;
}
h1 {
font-size: 36px;
font-family: Arial, Helvetica, sans-serif;
padding: 3px;
margin: 0 20%;
font-weight: 500;
text-decoration: none;
color: darkgrey;
/* background-color: ; */
}
h2 {
font-size: 18px;
font-family: Arial, Helvetica, sans-serif;
padding: 3px;
margin: 5px 5px;
font-weight: 100;
color: black;
/* background-color: ; */
}
p {
font-family: cursive;
font-size: 14px;
padding: 3px;
margin: 10px 5px;
color: black;
/* background-color: ; */
}
.logo {
background-size: cover;
background-image: url(assets/images/AA-logo.png);
background-color: red;
border-radius: 100%;
height: 100px;
width: 100px;
}