-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCAMshots CSS Stylesheet.css
97 lines (81 loc) · 1.39 KB
/
CAMshots CSS 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
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
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
}
header {
background: #333;
color: #fff;
padding-top: 30px;
min-height: 70px;
border-bottom: #77aaff 3px solid;
}
header h1 {
text-align: center;
text-transform: uppercase;
margin: 0;
}
header p {
text-align: center;
font-size: 1.2em;
}
nav {
margin: 0;
padding: 0;
background: #444;
text-align: center;
}
nav ul {
padding: 0;
list-style: none;
}
nav ul li {
display: inline;
}
nav ul li a {
text-decoration: none;
color: #fff;
padding: 15px 20px;
display: inline-block;
}
nav ul li a:hover {
background: #77aaff;
}
main {
float: left;
width: 70%;
}
aside {
float: right;
width: 30%;
background: #e4e4e4;
padding: 10px;
box-sizing: border-box;
}
.photos .category {
margin-bottom: 20px;
}
.photos .category h3 {
margin-bottom: 10px;
}
.photos .category img {
width: 100px;
height: auto;
margin-right: 10px;
border: 2px solid #ccc;
}
.photos .category img:hover {
border-color: #77aaff;
}
.clearfix::after {
content: "";
clear: both;
display: table;
}