-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
110 lines (100 loc) · 3.12 KB
/
styles.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
/* pacifico-regular - latin */
@font-face {
font-family: 'Pacifico';
font-style: normal;
font-weight: 400;
src: url('pacifico-v12-latin-regular.eot'); /* IE9 Compat Modes */
src: local('Pacifico Regular'), local('Pacifico-Regular'),
url('pacifico-v12-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('pacifico-v12-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
url('pacifico-v12-latin-regular.woff') format('woff'), /* Modern Browsers */
url('pacifico-v12-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
url('pacifico-v12-latin-regular.svg#Pacifico') format('svg'); /* Legacy iOS */
}
/* roboto-condensed-regular - latin */
@font-face {
font-family: 'Roboto Condensed';
font-style: normal;
font-weight: 400;
src: url('roboto-condensed-v16-latin-regular.eot'); /* IE9 Compat Modes */
src: local('Roboto Condensed'), local('RobotoCondensed-Regular'),
url('roboto-condensed-v16-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('roboto-condensed-v16-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
url('roboto-condensed-v16-latin-regular.woff') format('woff'), /* Modern Browsers */
url('roboto-condensed-v16-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
url('roboto-condensed-v16-latin-regular.svg#RobotoCondensed') format('svg'); /* Legacy iOS */
}
/* roboto-700 - latin */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 700;
src: url('roboto-v18-latin-700.eot'); /* IE9 Compat Modes */
src: local('Roboto Bold'), local('Roboto-Bold'),
url('roboto-v18-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('roboto-v18-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
url('roboto-v18-latin-700.woff') format('woff'), /* Modern Browsers */
url('roboto-v18-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
url('roboto-v18-latin-700.svg#Roboto') format('svg'); /* Legacy iOS */
}
/* background setup */
h3 a, h3 a:active, h3 a:visited {
color: white;
}
.background {
background-repeat:no-repeat;
/* custom background-position */
background-position:50% 50%;
/* ie8- graceful degradation */
background-position:50% 50%\9 !important;
}
/* fullscreen setup */
html, body {
/* give this to all tags from html to .fullscreen */
height:100%;
}
h1 {
font-family: 'Pacifico', cursive;
}
h2, h3, h4, h5, h6 {
font-family: 'Roboto Condensed', sans-serif;
}
.fullscreen,
.content-a {
width:100%;
height:100%;
height:auto;
min-height:100%;
padding-top: 20px;
padding-bottom: 20px;
}
/* content centering styles */
.content-a {
display:table;
}
.content-b {
display:table-cell;
position:relative;
vertical-align:middle;
text-align:center;
}
/* visual styles */
body{
margin:0;
font-family: 'Roboto', sans-serif;
color:#ffffff;
}
section {
background-color:#5a3aa0;
}
.not-fullscreen {
height:50%;
}
.txtbox {
background-color: white;
color: black;
opacity: 0.84;
}
.txtbox p {
font-weight: bold;
}