-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
100 lines (88 loc) · 1.45 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'poppins' , sans-serif;
}
.container{
width: 100%;
height: 100vh;
background-image: url(images/background.png);
background-position: center;
background-size: cover;
padding: 0 7%;
color: #fff;
}
nav{
width: 100%;
padding: 20px 0;
display: flex;
align-items: center;
}
.logo{
width: 50px;
cursor: pointer;
}
nav ul{
flex: 1;
}
nav ul li{
display: inline-block;
margin: 10px 20px;
}
nav ul li a{
color: #fff;
text-decoration: none;
}
nav.btn{
color: #fff;
text-decoration: none;
border: 1px solid #fff;
padding: 10px 30px;
border-radius: 20px;
}
.content h1{
font-size: 88px;
margin-bottom: 15px;
}
.content h1 span{
color: #ff960b;
}
.content p{
line-height: 22px;
font-size: 14px;
}
.content .btn{
display: inline-block;
margin-top: 30px;
background: #ff960b;
color: #fff;
text-decoration: none;
padding: 15px 30px;
border-radius: 30px;
}
.coin-list{
position: absolute;
right: 10%;
bottom: 50px;
display: flex;
align-items: center;
}
.coin{
display: flex;
align-items: center;
font-size: 14px;
margin: 0 15px;
color: #ff960b;
border: 1px solid #fff;
padding: 20px 30px;
border-radius: 8px;
}
.coin img{
width: 40px;
margin-right: 10px;
}
.coin h3{
color: #fff;
margin-bottom: 5px;
}