-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
102 lines (96 loc) · 1.48 KB
/
main.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
@import url('https://fonts.googleapis.com/css2?family=Ubuntu&display=swap');
@import url(//fonts.googleapis.com/earlyaccess/notosanskr.css);
html,
body {
font-family: 'Ubuntu';
margin: 0;
overflow-x: hidden;
word-break: keep-all;
word-wrap: break-word;
}
.main_page {
height: 100vh;
width: 100vw;
}
.main_pic img {
width: 100%;
}
.hand_pic_pc {
display: block;
}
.hand_pic_mobile {
display: none;
}
.main_text {
display: flex;
justify-content: center;
margin-top: 80px;
}
.title {
font-family: "Ubuntu";
margin-left: 10px;
font-size: 130px;
}
.tit_H {
color: #01B875;
font-weight: 600;
float: left;
}
.tit_UT {
color: black;
font-weight: 300;
float: left;
}
.sub_text {
display: flex;
align-items: flex-end;
}
.sub_title {
margin-left: 10px;
margin-bottom: 20px;
font-size: 30px;
}
.sub_head {
font-weight: 600;
}
.sub_tail {
font-weight: 300;
}
.icons {
display: flex;
justify-content: center;
margin-top: 10px;
}
.down_icons img {
display: inline-block;
margin-top: 10px;
margin-left: 10px;
margin-right: 10px;
height: 80px;
}
@media only screen and (max-width: 900px) {
.main_text {
margin-top: 150px;
}
.title {
font-size: 60px;
}
.sub_title {
margin-top: 25px;
font-size: 15px;
}
.icons {
margin-bottom: 100px;
}
.down_icons img {
display: inline-block;
height: 35px;
margin-top: 0px;
}
.hand_pic_pc {
display: none;
}
.hand_pic_mobile {
display: block;
}
}