-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
101 lines (100 loc) · 1.65 KB
/
style.css
File metadata and controls
101 lines (100 loc) · 1.65 KB
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
*{
margin: 0;
padding: 0;
font-family: sans-serif;
box-sizing: border-box;
}
.container{
width: 100%;
height: 100vh;
background: #dae4ff;
padding-left: 6%;
padding-right: 6%;
}
nav{
width: 100%;
padding: 40px 0;
display: flex;
align-items: center;
}
.logo{
flex: 1;
}
.logo img{
width: 170px;
cursor: pointer;
}
button{
padding: 15px 40px;
border: 0;
outline: none;
border-radius: 25px;
background: #333;
color: #fff;
font-size: 14px;
cursor: pointer;
box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
}
.menu{
width: 50px;
margin-left: 30px;
border-radius: 50%;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
cursor: pointer;
}
.row{
width: 100%;
display: flex;
overflow: hidden;
border-radius: 15px;
background: #fff;
}
.col-1, .col-2{
flex-basis: 50%;
overflow: hidden;
}
.col-2 img{
width: 100%;
}
.col-1{
padding: 8% 5%;
}
.col-1 h1{
font-size: 60px;
line-height: 80px;
letter-spacing: 2px;
color: #333;
}
.col-1 p{
color: #777;
line-height: 22px;
margin: 15px 0 30px;
}
ul{
position: absolute;
bottom: 30px;
}
ul li{
list-style: none;
width: 15px;
height: 15px;
display: inline-block;
background: #bfbfbf;
border-radius: 50%;
margin-right: 15px;
cursor: pointer;
}
ul .active{
background: #333;
}
.zoom{
animation: zoomout 0.5s linear 1;
}
@keyframes zoomout{
0%{
transform: scale(1.2);
}
100%{
transform: scale(1);
}
}