-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreset.css
More file actions
81 lines (66 loc) · 1.32 KB
/
reset.css
File metadata and controls
81 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
74
75
76
77
78
79
80
81
@charset "utf-8";
/*
Reset stylesheet copied from Tutorial 5 Reset Style Sheet,
New Perspectives on HTML5 and CSS3, 7th Edition
*/
/* Basic styles to be used with all devices and under all conditions */
header, nav, section {
display: block;
}
body, h1, header, html, img,
li, main, nav, nav a, section, ul {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
vertical-align: baseline;
background: transparent;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
/* Set the default page element styles */
html{
min-height: 100%;
padding-top: 1%;
background-image: url("./gray_background.jpeg");
/* Textured gray background stock photo from:
https://www.publicdomainpictures.net
*/
}
body{
position: relative;
margin: auto;
min-height: 800px;
min-width: 85%;
max-height: 100%;
max-width: 90%;
line-height: 3em;
box-shadow: 10px 5px 20px 10px;
background-color: rgb(155, 164, 178);
}
footer{
width: 100%;
text-align: center;
line-height: normal;
float: right;
/**position: absolute;
bottom: 0px;
right: 0px;
line-height: normal;
text-align: center;
font-size: 2vm;**/
}
a{
color: rgb(0, 0, 220);
}
ul, ol {
list-style: none;
}
nav ul {
list-style: none;
list-style-image: none;
}
nav a {
text-decoration: none;
}