-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweb.css
119 lines (100 loc) · 1.42 KB
/
web.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
@charset "utf-8";
@media screen and (min-width: 1026px) {
html {
font-size: 40% ;
}
}
@media screen and (max-width: 1025px) {
html {
font-size: 25%;
}
}
*{
margin: 0;
padding: 0;
}
main{
}
.header{
position: fixed;
top: 0;
z-index: 20;
left: 0;
display: flex;
width: 100%;
height: 8rem;
background-color: #E97575;
transition: all 1s ease-out;
}
.header_content{
font-size: 5.8rem;
}
.fixed-hide{
top: -8.5rem;
}
.container{
display: grid;
gap: 1rem;
grid-template-columns: repeat(2, minmax(200px, 1fr));
}
.main_img_1{
margin: 3rem;
}.main_content_1{
margin: 3rem;
font-size: 5rem;
}.main_img_2{
margin: 3rem;
}.main_content_2{
margin: 3rem;
font-size: 5rem;
}
.app_title{
display: flex;
font-size: 3rem;
overflow: hidden;
animation-duration: 3s;
animation-name: slidein;
margin-top: 9rem;
}
img{
height: 10rem;
}
ul{
list-style: none;
}
.footer{
width: 100%;
height: 40rem;
background-color: #E97575;
text-align: center;
display: flex;
}
a,a:hover,a:visited{
color: inherit;
}
li{
margin-top: 2rem;
}
.footer_title{
font-size: 6rem;
width: 33%;
margin-top: 10rem;
}
.footer_bigtitle{
font-size: 4rem;
width: 33%;
margin-top: 5rem;
}
.footer_smalltitle{
font-size: 3rem;
width: 33%;
margin-top: 5rem;
}
@keyframes slidein {
from {
margin-left: 20rem;
}
to {
width: 100%;
}
}