-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
73 lines (66 loc) · 1.32 KB
/
Copy pathstyle.css
File metadata and controls
73 lines (66 loc) · 1.32 KB
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
66
67
68
69
70
71
72
73
body {background-color: silver;}
h2 {
color: cyan;
font-size: 65px;
margin: 0px;
text-align: center;
}
.center {
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
}
img {
border-radius: 20%;
}
p {
color: midnightblue;
}
ul {
columns: 2;
max-width: 500px;
list-style-image: url(http://farm9.staticflickr.com/8368/8440559840_ceee49dc91_o.png);
}
ul:before{
content:attr(list-label);
font-size:120%;
font-weight:bold;
text-align: center;
display: block;
color: darkcyan;
}
li {
margin: 0;
padding: 16px 16px 14px;
list-style: none;
background-image: url(http://farm9.staticflickr.com/8368/8440559840_ceee49dc91_o.png);
background-repeat: no-repeat;
background-position: left center;
background-size: 10px;
}
"CSS pelow this point is still trial, trying to figure out from webhelp"
.navbar {
background-color: #333;
overflow: hidden;
position: fixed;
bottom: 0;
width: 100%;
}
.navbar a {
float: left;
display: block;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.navbar a:hover {
background-color: #800000;
color: Maroon;
}
.navbar a.active {
background-color: #00ffff;
color: Cyan;
}