-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathApp.css
More file actions
69 lines (58 loc) · 1.24 KB
/
App.css
File metadata and controls
69 lines (58 loc) · 1.24 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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@tailwind base;
@tailwind components;
@tailwind utilities;
:root{
--bgColor:#063ab9;
}
*{
margin: 0;
padding: 0;
box-sizing: border-box;
text-decoration: none;
list-style: none;
font-family: 'Poppins', sans-serif;
}
html{
font-size: 15px;
scroll-behavior: smooth;
}
button{
font-size: .9rem;
font-weight: 500;
cursor: pointer;
padding: 10px 20px;
border: 0;
border-radius: 10px;
color: var(--bgColor);
background-color: #ffffff;
transition: .2s ease-in-out;
&.btn-secondary{
background-color: var(--bgColor);
color: #ffffff;
}
&:hover{
scale: 1.1;
}
}
/* ::-webkit-scrollbar-track
{
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
background-color: #F5F5F5;
border-radius: 10px;
}
::-webkit-scrollbar
{
width: 10px;
background-color: #F5F5F5;
}
::-webkit-scrollbar-thumb
{
border-radius: 10px;
background-image: -webkit-gradient(linear,
left bottom,
left top,
color-stop(0.44, rgb(122,153,217)),
color-stop(0.72, rgb(73,125,189)),
color-stop(0.86, rgb(28,58,148)));
} */