-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
128 lines (105 loc) · 2.07 KB
/
style.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
@font-face {
font-family: 'GmarketSansMedium';
src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/[email protected]/GmarketSansMedium.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@keyframes cloud1 {
0% {
left: -10%;
}
100% {
left: 110%;
}
}
body {
background-color: #f4f6fa;
font-family: 'GmarketSansMedium';
}
.inner {
width: 100%;
height: 100%;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
box-sizing: border-box;
overflow: hidden;
}
.inner-image {
width: 100%;
display: flex;
justify-content: center;
}
.inner-title {
width: 100%;
display: flex;
justify-content: center;
}
.inner-title p {
margin: 5px;
letter-spacing: -5px;
font-size: 50px;
font-weight: 100;
color: red;
}
.inner-title p strong {
color: black;
}
.inner-main {
width: 100%;
margin-top: 50px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.inner-main-content {
width: 936px;
position: relative;
overflow: hidden;
}
.inner-main-content img {
width: 936px;
}
.inner-main-content .move {
width: 50px;
position: absolute;
bottom: 0;
left: 0;
}
.inner-main-content .move:nth-child(2) {
animation: cloud1 5s linear 0s infinite forwards;
}
.inner-main-content .move:nth-child(3) {
animation: cloud1 20s linear 0s infinite forwards;
}
.inner-main-content2 {
width: 90%;
height: 30px;
border-bottom: 3px solid black;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
color: red;
}
.inner-footer {
display: flex;
justify-content: center;
margin-top: 40px;
}
.inner-footer-content {
width: 90%;
height: 160px;
background-color: white;
box-shadow: 2px 1px 2px 1px #d4dae8;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.inner-footer-content p {
margin: 0;
}