-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinput.css
More file actions
46 lines (39 loc) · 660 Bytes
/
input.css
File metadata and controls
46 lines (39 loc) · 660 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
@tailwind base;
@tailwind components;
@tailwind utilities;
*{
box-sizing: border-box;
margin: 0;
padding: 0;
}
html{
scroll-behavior: smooth;
}
::-webkit-scrollbar{
width: 2px;
}
::-webkit-scrollbar-thumb{
background-color: rgb(238, 232, 232);
border-radius: 1rem;
}
.out{
display: flex;
transition: 1s;
}
/* notification */
.activenotif{
display: flex;
position: fixed;
top: 0;
opacity: 1;
transition: 1s;
transition-duration: 300sm;
pointer-events: all;
}
.desactivenotif{
display: none;
opacity: 0;
transition: 1s;
transition-duration: 300sm;
pointer-events:none;
}