-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
47 lines (38 loc) · 876 Bytes
/
Copy pathstyle.css
File metadata and controls
47 lines (38 loc) · 876 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
35
36
37
38
39
40
41
42
43
44
45
46
47
/*
Project Name: Cookie Monster
Client: Cookie Monster
Author: Chris Castiglione | www.twitter.com/castig | www.castig.org
Developed @ One Month in NYC
*/
body {
background: url(../images/cookie-monster.jpg);
/*background: url('../images/cookie-monster.jpg');*/
/* the follow is the code to have the image display as a full page */
background-position: center;
background-attachment: fixed;
-webkit-background-size: cover; /* the next 3 lines are "browser prefixes", they are necessary to include for CSS3 techniques */
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
#container {
background: black;
width: 400px;
color: white;
padding: 20px;
height: auto;
}
h1{
font-size: 80px;
}
h2{
background-color: #75c1f6;
color: black;
padding: 5px;
border-radius: 5px;
}
a
{
color: #75c1f6;
text-decoration: none;
}