-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
143 lines (137 loc) · 2.46 KB
/
styles.css
File metadata and controls
143 lines (137 loc) · 2.46 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
*{
margin:0%;
padding:0%;
box-sizing: border-box;
font-family:'poppins',sans-serif;
}
.container{
width: 100%;
height:100vh;
background-image: url(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:70px;
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:#FD8D14;
text-decoration: none;
border: 1px solid #FD8D14;
padding:10px 25px;
border-radius: 20px;
}
.content{
margin-top: 5%;
}
.content h1{
margin-bottom:10px;
font-size:55px;
}
.content span{
color: #FD8D14;
}
.content p{
margin-bottom:15px;
padding:5px;
}
.content .btn{
display: inline-block;
text-decoration: none;
color:#fff;
background-color: #FD8D14;
border: 1px solid #FD8D14;
margin:10px 10px;
padding: 10px 20px;
border-radius: 10px;
}
.coinlist{
position: absolute;
right:10%;
bottom:50px;
display:flex;
align-items: center;
}
.coin{
display: flex;
align-items: center;
font-size: 14px;
margin:0 10px;
padding:20px 30px;
color: #FD8D14;
border: 1px solid #fff;
border-radius: 8px;
}
.coin img{
width: 50px;
margin-right: 20px;
}
.coin h2{
color: #fff ;
}
@media only screen and (max-width:600px) {
.logo{
width: 40px;
position: absolute;
right:50%;
}
nav ul{
flex: 1;
position: absolute;
top:7%;
}
nav ul li{
display: inline-block;
margin:5px 5px 10px;
}
nav .btn{
position: absolute;
left: 88%;
padding: 5px;
}
.content{
margin-top:20%;
}
.coinlist{
position:relative;
top:15px;
left:50px;
bottom:10px;
display:inline-table;
align-items: center;
}
.coin{
display: flex;
align-items: center;
font-size: 14px;
margin:0 10px;
padding:15px 15px;
color: #FD8D14;
border: 1px solid #fff;
border-radius: 8px;
}
.coin img{
width: 30px;
margin-right:10px;
}
}