-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
134 lines (110 loc) · 1.87 KB
/
style.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
131
132
133
134
body{
margin:0em;
padding: 0em;
overflow-x:hidden;
}
header {
text-align: center;
background-image: url("back.jpg");
background-repeat:no-repeat;
background-position: top center;
margin: auto;
padding:5em;
height:300px;
position: relative;
}
.text{
position: absolute;
top: 45%;
left: 48%;
-webkit-transform: translate(-50%, -50%); /* Ch <36, Saf 5.1+, iOS, An =<4.4.4 */
-ms-transform: translate(-50%, -50%); /* IE 9 */
transform: translate(-50%, -50%); /* IE 10, Fx 16+, Op 12.1+ */
}
header p {
font-size:1.5em;
line-height: 200%;
font-family: 'Roboto Slab', serif;
font-weight: 700;
color: white;
margin:0em;
padding:0em;
}
h1,
h2 {
font-family: 'Mrs Sheppards', cursive;
}
h1 {
letter-spacing: 4px;
font-size: 100px;
color: #FF9966;
text-shadow: 2px 3px #FF6633;
margin: 0em auto 0em auto;
padding:0em;
line-height: 1em;
text-align: center;
}
section h2:first-child {
margin-top: 50px;
}
h2 {
font-size: 30px;
margin-bottom: 0px;
}
section {
max-width: 600px;
margin: auto;
padding: 0em 2em 0em 2em;
}
section p {
line-height: 200%;
font-family: 'Roboto Slab', serif;
font-weight: 300;
}
section p:last-child {
margin-bottom: 50px;
}
footer {
text-align: center;
margin: auto;
background-color: #FF9966;
padding: 75px 75px 100px 75px;
color: white;
}
ul {
margin: 0px;
padding: 0px;
}
li {
display: inline-block;
text-align: center;
margin: 0px 10px 0px 10px;
font-family: 'Roboto Slab', serif;
font-weight: 700;
}
li a {
color: #660000;
text-decoration: none;
}
@media only screen and (max-width: 500px) {
header {
padding:1em 0;
background-position: bottom right;
}
h1 {
font-size: 4.5rem;
}
#music{
letter-spacing: -.03rem;
}
section {
padding: 0 1rem;
}
footer{
padding: 2rem 0rem 3rem 0rem;
}
li {
display: block;
margin: 1rem 0rem 0rem 0rem;
}
}