This repository was archived by the owner on Aug 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscene_01.scss
99 lines (84 loc) · 2.14 KB
/
scene_01.scss
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
.s_01bluebar {
width: 100%;
height: 10%;
background-color: #071957;
}
#s_01 {
.s_01wrapper {
margin-left: 25%;
width: 100%;
height: 100%;
display: flex;
flex-flow: row;
flex-grow: 1;
.s_01header {
position: absolute;
right: 0;
top: 0;
z-index: 1;
width: 100%;
height: 100%;
.img2 {
position: absolute;
right: 0;
bottom: -200px;
z-index: 100;
}
.img1 {
position: absolute;
right: 0;
top: 0;
height: 100%;
margin: 0;
padding: 0;
}
}
.s_01txtblk {
display: flex;
flex-flow: column;
justify-content: space-between;
position: absolute;
left: 30%;
top: 50%;
transform: translate(-50%, -50%);
height: 60%;
width: 20%;
z-index: 1000;
p {
margin: 0px;
// margin-top: 1%;
// margin-bottom: 1%;
font-size: 1vw;
text-shadow: #333 1px 1px 1px;
padding: 1%;
}
.infoBlock {
padding: 2%;
background-color: #071957;
z-index: 1000;
.imgBlock {
width: 200px;
height: 200px;
background-color: #fff;
border: 3px #071957 solid;
position: absolute;
left: -150px;
top: 50%;
transform: translateY(-50%);
border-radius: 50%;
overflow: hidden;
}
}
}
.right {
.imgBlock {
left: auto;
right: -150px;
}
p {
padding-left: 0;
padding-right: 100px;
}
}
}
}