-
Notifications
You must be signed in to change notification settings - Fork 1
/
desktop_nocturnal.css
130 lines (120 loc) · 2 KB
/
desktop_nocturnal.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
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
html {
font-family:'Helvetica Neue','Helvetica','Arial',sans-serif;
font-size:16px;
line-height:19px;
color:#fff;
}
body {
margin:0; padding:0;
background-color:#333;
}
/* Demonstrating CSS Media Queries */
.using-mobile {
display:none;
}
.using-desktop {
font-family:'Georgia',serif;
font-size:18px;
font-style:italic;
color:#b1009a;
}
/* Container */
.container {
padding:30px 0;
width:960px;
margin:0 auto;
background:#111111;
border-right:10px solid #555555;
border-left:10px solid #555555;
}
/* Header */
.header {
height:240px;
background:#0d0d0d url('images/header.png') right top no-repeat;
position:relative;
}
/* General Styles - colors/fonts */
h1, h2, h3 {
color:#b1009a; /* Ladies Learning Code pink! */
}
ul {
padding:0;
list-style:none;
}
.content,
.sidebar {
padding:15px;
}
/* Sidebar - categories and cart */
.sidebar {
float:right;
width:230px;
background:#444;
}
.categories ul li a {
margin:4px 0;
font-size:12px;
color:#eee;
}
.categories ul li a:hover {
text-decoration:none;
}
.cart ul li {
background:#222;
border:1px solid #111;
margin:7px 0;
padding:5px;
}
.cart ul li .item-info {
width:100px;
display:inline-block;
margin:0 0 0 5px;
vertical-align:top;
}
.cart ul li .item-info h4 {
margin:5px 0 0 0; padding:0;
font-size:16px;
}
.cart ul li .item-info p {
margin:5px 0 0 0; padding:0;
}
/* Content section */
.content {
width:640px;
float:left;
}
.content .item {
display:inline-block;
vertical-align:top;
width:180px;
margin:0 15px 20px 0;
}
.content .item img {
padding:5px;
border:1px solid #ddd;
background:#fff;
}
.content .item h4 {
margin:5px 0 0 0;
padding:0;
}
.content hr.divider {
height:5px;
background:#ccc;
border-radius:3px;
-moz-border-radius:3px;
border:0;
margin:50px 0;
}
.footer {
clear:both;
margin:40px 0 0 0;
padding:30px;
background:#333;
border-top:1px solid #ccc;
border-bottom:1px solid #ccc;
}
.footer p {
text-align:center;
margin:5px 0;
}