-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
35 lines (29 loc) · 709 Bytes
/
Copy pathstyle.css
File metadata and controls
35 lines (29 loc) · 709 Bytes
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
html {
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande',
'Lucida Sans', Arial, sans-serif;
background-color: gray;
}
body {
width: 100%;
max-width: 1366px;
margin: 0 auto;
background-color: white;
/* The body content has a max-width - In viewports above that width the body
remains at 1366px and centers itself in the available space. In viewports below
that width, the body will stay at 100% of the width of the viewport */
}
header {
background: url(static/header1.jpg) no-repeat center;
height: 300px;
}
section {
padding: 20px;
}
p {
line-height: 1.5;
}
img {
display: block;
margin: 0 auto;
max-width: 100%;
}