blob: a10377fa68978a73318bbbe3bde6c82d9eefa499 (
plain) (
blame)
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
|
:host {
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
overflow: clip;
}
#hero {
display: flex;
/*flex-direction: column;*/
/*align-items: start;*/
/*justify-content: center;*/
}
h1 {
font-size: 50px;
max-width: 1200px;
}
#jf {
/*position: absolute;*/
}
#right {
max-width: 500px;
max-height: 500px;
display: flex;
justify-content: center;
align-items: center;
/*z-index: -0.5;*/
}
#left {
max-width: 500px;
z-index: 1;
}
|