-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
99 lines (83 loc) · 1.41 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
*{
padding: 0;
margin: 0;
font-family: sans-serif;
}
.container{
background: #000;
min-height: 100vh;
width: 100%;
overflow: hidden;
position: relative;
}
header{
display: flex;
justify-content: space-between;
align-items: center;
width: 80%;
margin: auto;
padding: 20px 0;
}
.logo{
width: 40px;
}
ul li{
display: inline-block;
list-style: none;
}
ul li a{
color: #fff;
text-decoration: none;
margin: 0 10px;
}
.content{
display: flex;
justify-content: space-between;
align-items: center;
width: 80%;
margin: auto;
}
.content .text{
width: 40%;
color: #fff;
}
.content .text h2{
font-size: 40px;
text-transform: uppercase;
}
.content .text p{
font-size: 18px;
margin: 20px 0;
}
.content .text a{
text-decoration: none;
background: #fff;
color: #000;
padding: 8px 15px;
border-radius: 20px;
transition: 0.5s;
}
.content .image{
width: 30%;
}
.content .image img{
width: 180px;
}
.icons{
position: absolute;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
}
.icons img{
width: 40px;
transition: 0.5s;
cursor: pointer;
}
.icons img:hover{
transform: scale(1.2);
}
.content .text a:hover{
background: rgb(42, 42, 42);
color: #fff;
}