-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLiquidLayout.css
More file actions
65 lines (50 loc) · 1.07 KB
/
LiquidLayout.css
File metadata and controls
65 lines (50 loc) · 1.07 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
body {
width: 90%;
max-width: 1200px;
min-width: 350px;
color: #414747;
font-family: Verdana, Geneva, Tahoma, sans-serif;
/*
You can short-hand these 3 into 1!
background-color: #fff;
background-image: url("resources/360_F_499464783_CMvHKvK3viubFB96JR0u0nDNNE7cTj3m.jpg");
background-repeat: repeat;
background-attachment: fixed;
like this!
background: #fff url("resources/360_F_499464783_CMvHKvK3viubFB96JR0u0nDNNE7cTj3m.jpg") fixed;
*/
background-color: #fff;
}
.evenly-spaced {
padding: 1%;
margin: 1%;
border-radius: 4px;
overflow: auto;
}
#header{
width: 99%;
background: #cfcfcf url(resources/code-48.png) no-repeat;
background-position-y: center;
background-position-x: 97%;
}
img.logo {
z-index: 11;
}
#header h1 {
display: inline;
}
#left-page, #right-page {
background-color: #EEEDE7;
}
#left-page {
width: 31%;
float: left;
}
#right-page {
width: 61%;
float: left;
}
#footer {
width: 99%;
background-color: #f3f3f3;
}