-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
executable file
·62 lines (47 loc) · 1012 Bytes
/
style.css
File metadata and controls
executable file
·62 lines (47 loc) · 1012 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
59
60
61
62
@media screen { /* less than 480px (smartphone, etc.) */
html {
/*background-color: #CCAE35; */
}
body {
font-family: 'Cutive Mono', serif;
font-size: 16px;
color: #444;
background-color: #CCDED1;
padding: 20px;
}
h1 {
font-family: Georgia;
color: #999;
text-transform: uppercase;
}
ul {
list-style: none; /* no style at all! Overrides default styles.*/
margin-left: 0;
padding-left: 0; /* some browsers use padding-left, others use margin-left */
}
a:link { /* these are all the states a link can have */
color: #967D94;
}
a:visited {
color: #679;
}
/* a:hover
a:focus
a:active */
}
@media screen and (min-width: 480px) { /* tablet */
}
@media screen and (min-width: 768px) { /* small laptop or older computer with 800x600 resolution */
body {
width: 700px;
margin: 20px auto;
}
h1 {
/*color: blue; */
}
li {
display: inline;
}
}
@media screen and (min-width: 992px) { /*bigger screen */
}