-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathmaintenance.css
68 lines (57 loc) · 1.04 KB
/
maintenance.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
body {
background-image: linear-gradient(45deg, #567EA2,#231B30);
color : #fff;
font : 1.2em 'Lato', sans-serif;
height: 100%;
margin: 0;
width: 100%;
}
h1{
font-size: 4em;
}
p{
color: #e8e0dc;
font-size: 1.2em;
margin-right: 20%;
}
.container{
align-items: center;
display: flex;
justify-content: center;
max-width: 100%;
}
.container div{
display: flex;
width: 40%;
height: 100vh;
}
.container div:first-child{
flex-direction: column;
justify-content: center;
text-align: left;
}
div.picture_bg{
background-image: url('oceanbranch.jpg');
background-position: center center;
justify-content: flex-end;
}
div.picture_bg p{
align-self: flex-end;
opacity: 0.4;
margin: 0;
padding: 0 4% 2% 0;
}
@media only screen and (max-width: 768px) {
.container{
align-items: center;
display: flex;
flex-direction: column;
justify-content: center;
max-width: 100%;
}
.container div{
display: flex;
width: 80%;
height: 50vh;
}
}