-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstarterStylesheet.css
More file actions
58 lines (47 loc) · 877 Bytes
/
starterStylesheet.css
File metadata and controls
58 lines (47 loc) · 877 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
48
49
50
51
52
53
54
55
56
57
58
/* Yes, this is blank. That's OK! You're gonna fill this with AWESOME. FS14 */
@import url('https://fonts.googleapis.com/css?family=Nunito');
html {
background-image: url('background.jpg');
margin: 0 auto;
}
body {
border: 5px solid #CCCCCC;
background: #127BC1;
margin: 0 auto;
width: 700px;
font-family: 'Nunito', sans-serif;
padding: 25px;
}
#nav {
float: left;
border: 1px solid #D026F5;
background-color: #CCCCCC;
list-style-type: none;
text-align: left;
text-decoration: none;
margin: 15px;
padding: 7px;
font-weight: 600;
}
#nav a:link {
color: #1793CE;
text-decoration: none;
}
ul {
text-indent: 1px;
color: white;
list-style-type: square;
font-size: 14px;
}
h1 {
color: #CBCDCC;
}
p {
color: white;
font-size: 14px;
}
@media only screen and (max-width: 600px) {
#nav {
background-color: pink;
}
}