forked from JoseVv24/Intro-to-Github
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmystyles.css
75 lines (66 loc) · 1.34 KB
/
mystyles.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
body {
background: rgba(250, 160, 100, .2);
}
.wrapper {
width: 90%;
margin: 0 auto;
background-image: url("http://bestanimations.com/Books/pretty-book-bench-nature-water-outdoors-animated-gif.gif");
background-repeat: no-repeat;
background-position: center;
background-attachment: fixed;
background-size: cover;
background-origin: padding-box;
box-shadow: 7px 0px 10px rgba(0, 0, 0, .3), -7px 0px 10px rgba(0, 0, 0, .3);
}
#headerImage img {
width: 120px;
height: 110px;
border: 12px solid rgba(200, 80, 70, .3);
border-radius: 50%;
display: block;
margin-left: auto;
margin-right: auto;
margin-top: 25px;
margin-bottom: 25px;
}
.store {
background: rgba(40, 80, 100, .2);
}
h1 {
text-align: center;
font-family: Monospace;
display: block;
color: #fff;
font-size: 48px;
background: #8a6f3a;
width: 340px;
margin: auto;
}
nav {
text-align: center;
margin: 25px;
}
nav a {
text-align: center;
padding: .7% 2%;
margin: 1.5% 1%;
text-decoration: none;
background-color: rgba(200, 80, 70, .7);
color: white;
display: inline block;
}
nav a:hover {
box-shadow: 0 1px 1px #fff;
text-shadow: 0 1px 1px #fff;
}
section {
padding: 1%;
background: rgba(200, 120, 40, .45);
text-align: center;
font-size: 18px;
}
h2 {
font-size: 30px;
font-family: Helvetica, cursive;
color: #fff;
}