-
Notifications
You must be signed in to change notification settings - Fork 329
Expand file tree
/
Copy pathApp.css
More file actions
51 lines (43 loc) · 977 Bytes
/
App.css
File metadata and controls
51 lines (43 loc) · 977 Bytes
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
:root
{
--yellow: #F5C32C;
--orange : #FCA61F;
--black : #242D49;
--gray : #788097;
--blueCard : #DDF8FE;
--purple: rgb(238 210 255);
--boxShadow : 0px 19px 60px rgb(0 0 0 / 8%);
--orangeCard: rgba(252, 166, 31, 0.45);
--smboxShadow: -79px 51px 60px rgba(0, 0, 0, 0.08);
}
.App{
padding: 0.5rem 3.5rem;
overflow: hidden;
color: var(--black);
}
.nav{
overflow: hidden;
position: fixed;
z-index: 5;
background-color: red;
}
.button {
background: linear-gradient(180deg, #fdc50f 26.71%, #fb982f 99.36%);
box-shadow: 0px 20px 24px 3px rgba(251, 161, 40, 0.42);
border-radius: 34px;
border: none;
color: white;
font-size: 16px;
padding: 11px 26px 11px 26px;
}
.button:hover {
background: white;
cursor: pointer;
border: 1px solid var(--orange);
color: var(--orange);
}
@media screen and (max-width: 480px) {
.App {
padding: 0.5rem 1rem;
}
}