-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
103 lines (82 loc) · 1.74 KB
/
style.css
File metadata and controls
103 lines (82 loc) · 1.74 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
header {
font-family: Futura; Trebuchet MS;
font-weight: bold condensed;
color: #008080;
font-size: 50px;
}
body {
font-family: Verdana, sans-serif;
color: #000000;
font-size: 20px;
}
h1 {
font-family: Courier; Monospace;
font-weight: bold condensed;
color: #000;
font-size: 30px;
}
#content{
padding: 3px;
}
#main_nav ul { padding: 0; margin: 0; }
#main_nav li {
list-style-type: none; /* remove bullet points */
}
#main_nav li a {
display: block;
text-decoration: none; /* remove underline */
border-radius: 5px; /* rounded corners */
margin: 5px;
padding: 10px;
font-weight: bold;
background-color: #666;
/* nice gradient shade on the buttons */
background-image: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
border: 1px solid #000; /* dark outline */
}
nav li:active {
background-color: #ccc;
background-image: none;
box-shadow: inset 0 3px 3px rgba(0, 0, 0, .2);
}
footer{
font-family: Futura; Trebuchet MS;
color: #008080;
font-size: 20px;
}
header.secondary{
padding-left: 75px;
}
button {
/*center the button*/
display: block;
width: 50%;
margin-left: auto;
margin-right: auto;
/* add your code to set top and bottom margins */
margin-top: 6px;
margin-bottom: 6px;
/*add an image to your button*/
/*set width and height for the button*/
width:80px;
height: 40px;
}
button.back{
/*These lines override the previous styling of buttons*/
width:60px;
height: 30px;
/*These lines position the back button inside the header*/
position:absolute;
left:16px;
top:8px;
}
ul{
list-style-type: square;
list-style-poistion: outside;
margin: 5px;
padding: 10px;
}
li{
padding: 5px;
margin-left: 35px;
}