-
Notifications
You must be signed in to change notification settings - Fork 0
/
vertical.css
74 lines (57 loc) · 1000 Bytes
/
vertical.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
.logo svg{
max-height: none;
width: 100%;
/*height: auto;*/
/*max-height: 55%;*/
left: 0;
top: 0;
transform: none;
}
.intro-left-column {
width: 90%;
top: 55%;
left: 50%;
transform: translate(-50%, 0%);
z-index: 2;
}
h1.center {
top: 22%;
font-size: 20px;
}
@media all and (max-width: 1024px) and (min-width: 481px) {
.logo svg{
top: 10%;
width: 50%;
height: auto;
max-height: none;
left: 25%;
}
.intro-left-column {
width: 50%;
top: 55%;
left: 50%;
/*transform: translate(-50%, -50%);*/
z-index: 2;
}
h1.center {
top: 32%;
}
}
/*@media all and (max-width: 480px) and (min-width: 320px) { */
/* .logo svg{
height: auto;
max-height: none;
left: 5%;
top: 5%;
}*/
/* .intro-left-column {
width: 90%;
top: 70%;
left: 50%;
transform: translate(-50%, -50%);
}*/
/* h1.center {
top: 25%;
font-size: 1.5em;
}*/
/*}*/