-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
116 lines (112 loc) · 2.2 KB
/
Copy pathstyle.css
File metadata and controls
116 lines (112 loc) · 2.2 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
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
:root{
--secondary-colors: #232322;
--primary-color:#6e40ff;
}
body{
font-family: "Roboto", sans-serif;
background-color: #fcfdf8;
}
header{
display:flex;
justify-content: space-between;
padding: 15px;
align-items: center;
}
#nav-links ul{
list-style: none;
display: flex;
gap: 20px;
padding: 7px;
}
#nav-links ul li a{
text-decoration: none;
color: var(--secondary-color);
text-transform: capitalize;
}
#nav-links ul li a.free{
color: #ffffff;
background: var(--secondary-colors);
padding: 5px 10px;
border-radius: 20px;
}
main{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 15px;
gap: 20px;
}
main .banner-text {
font-size: 2rem;
text-align: center;
width: 70%;
padding: 20px;
font-weight: bolder;
}
main .download{
display: flex;
align-items: center;
justify-content: center;
/* gap: 10px; */
padding: 15px;
width: 300px;
}
main .download a{
background-color:var(--primary-color) ;
}
main .download a:first-child{
text-decoration: none;
color: #ffffff;
padding: 15px 25px;
font-size: 1.5rem;
border-radius: 30px;
text-transform: capitalize;
flex-grow:5 ;
text-align: center;
font-weight: 800;
}
main .download a:last-child{
padding: 10px;
border-radius: 50%;
}
main .download a:last-child img{
transform:rotate(180deg);
width: 25px;
height: 25px;
}
main .image img{
width: 450px;
}
main .banner-description{
font-size: 2.5rem;
width: 400px;
text-align: center;
padding: 10px;
font-weight: bold;
}
@media (max-width:700px){
main .banner-text {
font-size: 1.3rem;
width: 90%;
}
main .banner-description{
font-size: 1.5rem;
}
}
@media (max-width:480px){
header{
flex-direction: column;
gap:10px;
}
#nav-links ul{
flex-direction: column;
align-items: center;
}
}