-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCryptocurrency.css
115 lines (97 loc) · 1.6 KB
/
Cryptocurrency.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
* {
margin: 0;
padding: 0;
font-family: 'Poppins', sans-serif;
box-sizing: border-box;
}
.container {
width: 100%;
height: 100vh;
background: url(/images/bg.png);
background-position: center;
background-size: cover;
padding: 0 7%;
color: white;
}
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 {
text-decoration: none;
color: white;
}
nav ul li a:hover{
color: #ff960b;
}
nav .btn {
color: white;
text-decoration: none;
border: 1px solid white;
padding: 10px 30px;
border-radius: 20px;
}
.content {
margin-top: 10%;
}
.content h1 {
font-size: 60px;
margin-bottom: 15px;
}
.content span {
color: #ff960b;
}
.content p {
font-size: 18px;
}
.content .btn {
display: inline-block;
margin-top: 30px;
background: #ff960b;
color: black;
text-decoration: none;
padding: 15px 30px;
border-radius: 30px;
}
.content .btn:hover {
background: #ec8b0b;
}
.coin-list {
position: absolute;
left: 86px;
bottom: 10px;
display: flex;
align-items: center;
/* border-top: 1px solid #ff960b; */
}
.coin {
display: flex;
align-items: center;
font-size: 14px;
margin: 0 15px;
color: #ff960b;
/* border: 1px solid white; */
padding: 20px 30px;
border-radius: 8px;
}
.coin img {
width: 40px;
margin-right: 10px;
}
.coin h3 {
color: white;
margin-bottom: 5px;
}