-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathreset.css
More file actions
130 lines (107 loc) · 2.03 KB
/
reset.css
File metadata and controls
130 lines (107 loc) · 2.03 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
@charset "uft-8";
/*
Created by: Liz Bequette
Basic page layout.
background image from: Pixabay.com
*/
/* Layout used with all devices */
html {
font-family: Arial;
background: white url("background.jpg") no-repeat fixed center;
background-size: cover;
}
/* Lauren helped me organize the body styles */
body {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
vertical-align: baseline;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
body {
background-color: rgba(232, 246, 243, 0.5);
margin-left: auto;
margin-right: auto;
max-width: 1020px;
min-width: 1040px;
}
header img {
display: block;
margin-left: auto;
margin-right: auto;
}
/* Navigation from w3schools.com */
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: rgba(255, 255, 255, 0.3);
}
li {
float: left;
}
li a {
display: block;
color: rgb(33, 33, 33);
text-align: center;
padding: 10px 10px;
text-decoration: none;
}
li a:hover {
background-color: rgba(255, 255, 255, 0.3);
color: rgb(67, 102, 85);
}
/* Main Body Styles */
h1 {
text-align: center;
color: rgb(33, 33, 33);
}
article p {
font-family: Verdana;
color: rgb(33, 33, 33);
text-align: justify;
line-height: 1.8;
}
article p a {
text-decoration: none;
color: rgb(33, 33, 33);
}
article p a:hover {
background-color: rgba(255, 255, 255, 0.3);
color: rgb(67, 102, 85);
}
article#main {
margin: 20px 0px 20px 20px;
display:-webkit-flex;
display: flex;
-webkit-align-items: center;
align-items: center;
float: left;
width: 50%;
}
aside {
margin: 20px 0px 20px 20px;
display: -webkit-flex;
display: flex;
-webkit-align-items: center;
align-items: center;
}
/* Footer Styles */
footer {
background-color: rgba(255, 255, 255, 0.3);
text-align: center;
color: rgb(33, 33, 33);
}
footer a {
text-decoration: none;
color: rgb(33, 33, 33);
}
footer a:hover {
background-color: rgba(255, 255, 255, 0.3);
color: rgb(67, 102, 85);
}
/* Mobile Devices */