-
Notifications
You must be signed in to change notification settings - Fork 17
/
index.css
117 lines (103 loc) · 2.75 KB
/
index.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
/* General overwrite */
a{
color: #2C93FF;
}
a:hover, a:focus {
color: #1084FF;
}
a:focus, a:active,
button::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
select::-moz-focus-inner,
input[type="file"] > input[type="button"]::-moz-focus-inner {
outline : 0;
}
/* Typography */
p{
font-size: 16px;
line-height: 1.6180em;
}
.main{
background-position: center center;
background-size: cover;
height: auto;
left: 0;
min-height: 100%;
min-width: 100%;
position: absolute;
top: 0;
width: auto;
}
.cover{
position: fixed;
opacity: 1;
background-color: rgba(0,0,0,.6);
left: 0px;
top: 0px;
width: 100%;
height: 100%;
z-index: 1;
}
.cover.black{
background-color: rgba(0,0,0,.6);
}
.logo-container .logo{
overflow: hidden;
border-radius: 50%;
border: 1px solid #333333;
width: 60px;
float: left;
}
.main .logo{
color: #FFFFFF;
font-size: 56px;
font-weight: 300;
position: relative;
text-align: center;
text-shadow: 0 0 10px rgba(0, 0, 0, 0.33);
margin-top: 150px;
z-index: 3;
}
.main .logo.cursive{
font-family: 'Grand Hotel',cursive;
font-size: 82px;
}
.main .content{
position: relative;
z-index: 4;
}
.main .motto{
min-height: 140px;
}
.main .motto, .main .subscribe .info-text{
font-size: 28px;
color: #FFFFFF;
text-shadow: 0 1px 4px rgba(0, 0, 0, 0.33);
text-align: center;
margin-top: 50px;
}
.main .subscribe .info-text{
font-size: 18px;
margin-bottom: 30px;
}
.footer{
position: relative;
bottom: 20px;
right: 0px;
width: 100%;
color: #AAAAAA;
z-index: 4;
text-align: right;
margin-top: 50px;
}
.footer a{
color: #FFFFFF;
}
@media (min-width:991px){
.footer{
position: fixed;
bottom: 20px;
}
}