-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
65 lines (53 loc) · 1.14 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
body {
background: gray;
font-family: 'Open Sans', sans-serif;
color:white
}
#container {
margin: 0 auto;
width: 640px;
background: #111;
padding: 20px;
border: 1px #222 solid;
}
#header h1 { margin: 0; font-color:white }
#nav ul { margin: 0; }
#nav li {
font-weight: bold;
float: right;
list-style: none;
margin-left: 10px;
}
#header a, #nav a { color: rgb(28, 161, 202); text-decoration: none; }
#header a:hover, #nav a:hover { color: rgb(157, 204, 255); text-decoration: underline; }
article a { color: #FEFEF2; text-decoration: none; }
article a:hover { color: white; text-decoration: underline; }
a { color: #FEF0C9; text-decoration: none; }
a:hover { color: #FEF6E4; text-decoration: underline; }
article {
font-weight: bold;
margin: 20px;
padding: 20px;
text-align: center;
cursor: pointer;
color: black;
background: lightblue;
}
.sample .name {
font-size: 22px;
padding-bottom: 5px;
color: #fee;
}
.sample .info {
color: #B0F0F8;
}
input[type='range'] {
-webkit-appearance: none;
background-color: gray;
height: 20px;
border-radius: 15px;
padding: 0 3px;
}
blockquote {
font-style: italic;
}