-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylesheet.css
53 lines (47 loc) · 1.07 KB
/
stylesheet.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
html, * {
padding: 0;
margin: 0;
}
body {
background-image: url("http://i.huffpost.com/gen/1946936/images/o-YOSEMITE-VALLEY-facebook.jpg");
background-repeat: no-repeat;
background-size: cover;
}
/* Add a black background color to the top navigation */
.topnav {
background-color: #333;
overflow: hidden;
margin: 10%;
width: 80%;
height: 45px;
-moz-box-shadow:0 0 8px #666;
-webkit-box-shadow:0 0 8px #666;
box-shadow:0 0 8px #666;
}
#content {
margin: 10%;
width: 80%
background: #ffffff;
text-align: left;
-moz-box-shadow:0 0 8px #666;
-webkit-box-shadow:0 0 8px #666;
box-shadow:0 0 8px #666;
background-color: #ffffff;
}
#text {
padding: 40px;
}
/* Add a black background color to the top navigation bar */
.topnav {
overflow: hidden;
background-color: #e9e9e9;
}
/* Style the search box inside the navigation bar */
.topnav input[type=text] {
float: right;
padding: 6px;
border: none;
margin-top: 8px;
margin-right: 16px;
font-size: 17px;
}