forked from wics-uw/learn-to-code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
36 lines (30 loc) · 643 Bytes
/
style.css
File metadata and controls
36 lines (30 loc) · 643 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
/* comments look like this in CSS files */
#navbar {
background-color: #000000; /* black */
color: #ffffff; /* white */
margin: 0;
padding: 0.5em 0; /* 0.5em padding on top/bottom, 0 padding on left/right */
}
#navbar a {
margin: 0;
padding: 0.5em;
color: #ffffff;
text-decoration: none;
}
main {
padding: 1.5em;
}
p1 {
color: red;
}
body {
background-color: #ffffff;
background-image: url("IMG_3602.jpg"), url("background-gradient.jpg");
background-repeat: no-repeat, repeat;
background-position: right top;
background-attachment: ,fixed;
background-size: 15%, 100%;
}
header{
text-align: center;
}