-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
120 lines (116 loc) · 2.19 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
:root {
--Red: hsl(12, 88%, 59%);
--Blue: hsl(228, 39%, 23%);
--Dark: hsl(227, 12%, 61%);
--Very: hsl(233, 12%, 13%);
--Pale: hsl(13, 100%, 96%);
--Gray: hsl(0, 0%, 98%);
}
* {
list-style-type: none;
}
body {
background: url(./img/bg-tablet-pattern.svg);
background-repeat: no-repeat;
background-size: 800px;
background-position: 90% -25%;
}
img {
width: 100%;
}
.flex img {
width: 50%;
}
.card {
border: none;
}
.card img {
width: 30%;
margin-bottom: 1rem;
}
.btn {
background-color: var(--Red);
outline: none;
border: none;
border-radius: 15px;
box-shadow: 0px 4px 4px var(--Red);
}
.number {
border-radius: 15px;
background-color: var(--Red);
}
.newsletter {
background: url('./img/bg-simplify-section-desktop.svg');
background-repeat: no-repeat;
background-color: var(--Red);
}
.button {
background-color: var(--Gray);
text-decoration: none;
color: var(--Red);
border-radius: 15px;
}
.footer {
background-color: var(--Blue);
}
.footer .logo {
width: 50%;
filter: invert(5);
margin-bottom: 5rem;
}
.social a img {
width: 10%;
padding: 5px;
}
input {
border-radius: 5px;
outline: none;
border: none;
}
.pra {
color: var(--Dark);
}
.link ul li{
margin-bottom: 0.5rem;
}
.bx{
position: relative;
width: 60px;
height: 60px;
background: url('./img/icon-close.svg');
background-repeat: no-repeat;
background-size: 20px;
background-position: center;
cursor: pointer;
}
.bx.bx-menu{
background: url('./img/icon-hamburger.svg');
background-repeat: no-repeat;
background-size: 25px;
background-position: center;
cursor: pointer;
}
@media (max-width:768px) {
.flex {
display: flex;
flex-direction: column-reverse;
}
.flex img {
width: 100%;
}
.flex .text {
font-size: 40px;
}
.flex p {
font-size: 18px;
}
.tex {
font-size: 20px;
background-color: var(--Pale);
}
.newsletter {
background: url('./img/bg-simplify-section-mobile.svg');
background-repeat: no-repeat;
background-color: var(--Red);
}
}