-
Notifications
You must be signed in to change notification settings - Fork 0
/
Design.css
133 lines (105 loc) · 2.11 KB
/
Design.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
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
* {
margin : 0;
padding: 0;
box-sizing: border-box;
perspective: 1000;
font-family: sans-serif, Arial, Helvetica, sans-serif;
}
#base {
display: flex;
background : lightblue;
}
#back {
width: 20px;
height: 20px;
position: absolute;
left: 4px;
top: 20px;
}
#flight_Info {
width: 250px;
height: 80px;
left: 10px;
top: 70px;
}
#header{
width: 300px;
height: 40px;
z-index: auto;
text-align: center;
font-size: larger;
font-family:'Times New Roman', Times, serif;
}
#departure{
width: 50px;
height: 30px;
z-index: auto;
left: 10px;
top: 70px;
font-size: larger;
font-family:'Times New Roman', Times;
}
#hyphen_oneway
{
width: 10px;
height: 5px;
z-index: auto;
left: 65px;
top: 70px;
font-size: larger;
font-family:'Times New Roman', Times;
}
#hyphen_roundtrip
{
width: 10px;
height: 5px;
z-index: auto;
left: 65px;
top: 70px;
font-size: larger;
font-family:'Times New Roman', Times;
}
#arrival{
width: 50px;
height: 30px;
z-index: auto;
left: 80px;
top: 70px;
font-size: larger;
font-family:'Times New Roman', Times;
}
#showDepartureDate{
width: 50px;
height: 30px;
z-index: auto;
}
#showArrivalDate {
width: 50px;
height: 30px;
z-index: auto;
}
#showPeople{
width: 30px;
height: 30px;
z-index: auto;
}
#BoardingPassContainer{
position: relative;
width: 400px;
height: 100px;
margin: 10px;
}
#firstDisplay { /*펼쳤을 때 출발지, 도착지가 보이는 구간*/
width: 100%;
height: 100px;
position: absolute;
background: #fff;
border-radius: 8px;
display: flex;
flex-direction: row; /*flex 항목이 주 축과의 방향 배치*/
justify-content: space-between; /*flex 사이의 주변공간*/
padding: 18px 23px;
flex-wrap: wrap; /*flex 항목이 한 줄로 or 여러 줄로*/
backface-visibility: hidden; /*뒷면이 보이는지 안보이는지*/
box-shadow: 0px 0px 25px -1px rgba(0, 0, 0, 0.1); /**/
}