-
Notifications
You must be signed in to change notification settings - Fork 0
/
project_underconstruction.css
executable file
·68 lines (60 loc) · 1.22 KB
/
project_underconstruction.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
@import url(https://fonts.googleapis.com/css?family=Montserrat);
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700);
h1 {
margin: 0;
font-family: 'Montserrat', sans-serif;
font-size: 4em;
color: #0A0AF4;
-webkit-text-shadow: 0 2px 1px rgba(0, 0, 0, 0.6), 0 0 2px rgba(0, 0, 0, 0.7);
-moz-text-shadow: 0 2px 1px rgba(0, 0, 0, 0.6), 0 0 2px rgba(0, 0, 0, 0.7);
text-shadow: 0 2px 1px rgba(0, 0, 0, 0.6), 0 0 2px rgba(0, 0, 0, 0.7);
word-spacing: 16px;
}
p {
font-family: 'Open Sans', sans-serif;
font-size: 1.4em;
font-weight: bold;
color: #F4410A;
text-shadow: 0 0 40px #FFFFFF, 0 0 30px #FFFFFF, 0 0 20px #FFFFFF;
}
.container {
position: absolute;
top: 0;
bottom: 0;
width: 100%;
background: url('');
background-size: cover;
}
.wrapper {
width: 100%;
min-height: 100%;
height: auto;
display: table;
}
.content {
display: table-cell;
vertical-align: middle;
}
.item {
width: auto;
height: auto;
margin: 0 auto;
text-align: center;
padding: 8px;
}
@media only screen and (min-width: 800px) {
h1 {
font-size: 6em;
}
p {
font-size: 1.6em;
}
}
@media only screen and (max-width: 320px) {
h1 {
font-size: 2em;
}
p {
font-size: 1.2em;
}
}