-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyle.css
79 lines (61 loc) · 1.47 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
@font-face {
font-family: 'open_sanslight';
src: url('fonts/OpenSans-Regular-webfont.eot');
src: url('fonts/OpenSans-Regular-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/OpenSans-Regular-webfont.woff') format('woff'),
url('fonts/OpenSans-Regular-webfont.ttf') format('truetype'),
url('fonts/OpenSans-Regular-webfont.svg#open_sanslight') format('svg');
font-weight: normal;
font-style: normal;
}
html {
background: url(background.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
body {
padding-top: 25px;
font-size: 20px;
font-family: "open_sanslight", serif;
background: transparent;
}
h1 {
font-family: "open_sanslight", Arial, sans-serif;
font-weight: 600;
font-size: 70px;
font-size: 6rem;
}
h1 span {
/* color: #333; */
}
h2 {
font-family: "open_sanslight", Arial, sans-serif;
font-weight: 500;
font-size: 40px;
margin-top: 0;
color: #666;
}
label {
font-weight: 400;
}
#slider { margin: 30px; }
/* Override B3 .panel adding a subtly transparent background */
.panel {
background-color: rgba(255, 255, 255, 0.9);
}
.margin-base-vertical {
margin: 40px 0;
}
.footer {
position: fixed;
bottom: 0;
font-size: 16px;
width: 100%;
padding: 1px 10px 10px;
text-align: center;
/* Set the fixed height of the footer here */
height: 50px;
background-color: rgba(255, 255, 255, 0.9);
}