forked from lingonsaft/hacktoberfest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
84 lines (69 loc) · 1.34 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
/* Fonts from Google Fonts - more at https://fonts.google.com */
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700');
@import url('https://fonts.googleapis.com/css?family=Merriweather:400,700');
body {
background-color: white;
font-family: "Open Sans", sans-serif;
padding: 5px 25px 35px 25px;
font-size: 18px;
margin: 0;
color: #444;
background: #efefef;
}
h1 {
font-family: "Merriweather", serif;
font-size: 32px;
}
h2 {
padding: 10px 15px;
color: #666;
font-weight: 400;
background: white;
margin: 30px 0 0 0;
}
.stage {
position: relative;
width: 100%;
height: 350px;
background: white;
}
.stage img {
height: 60px;
position: absolute;
}
.stage .brick {
color: white;
font-weight: bold;
font-size: 25px;
text-align: center;
text-shadow: 0px 2px 0px rgba(0,0,0,.3);
padding-top: 15px;
box-sizing: border-box;
position: absolute;
height: 60px;
min-width: 50px;
}
.yellow {
background: url(img/yellow.svg) repeat;
}
.blue {
background: url(img/blue.svg) repeat;
}
.pink {
background: url(img/pink.svg) repeat;
}
.green {
background: url(img/green.svg) repeat;
}
.black {
background: url(img/black.svg) repeat;
}
.purple {
background: url(img/purple.svg) repeat;
}
.brown {
background: url(img/brown.svg) repeat;
}
.brick purple {
font-family: 'Mali', cursive;
}