-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSTYLE.css
123 lines (106 loc) · 2.05 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
121
122
123
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400&display=swap');
*{
font-family: 'Poppins';
margin: 0;
padding: 0;
}
.barra{
background-color: rgba(32, 32, 32, .7);
height: 100vh;
width: 300px;
display: flex;
align-items: center;
flex-direction: column;
float: left;
}
.barra li, input{
color: white;
width: 260px;
background-color: rgb(35, 39, 46);
padding: 11px 4px;
margin: 12px 0;
text-align: center;
list-style: none;
border-radius: 5px;
}
body {
background-image: url("Image-Background.jpg");
background-size: cover;
backdrop-filter: brightness(.8);
}
.barra h2{
color: white;
margin-top: 30px;
}
input {
border-style: none;
}
input:focus {
outline: 2px #2d2d2d;
}
li:hover {
background-color:rgb(30, 30, 50);
cursor: pointer;
}
.pesquisa-container {
width: auto;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.pesquisar {
color: white;
height: auto;
width: 550px;
font-size: 'Poppins';
margin-top: 0%;
padding: 12px;
}
#data,#hora {
font-family: 'Poppins';
color:rgb(255, 255, 255);
font-size: 23px;
float: right;
text-shadow: 2px 1px black;
}
#hora {
float: left;
}
.pesquisa-container div {
width: 550px;
}
.scroll{
overflow-y: auto;
}
::-webkit-scrollbar {
width: 0px;
}
.excluindo {
animation: excluir .22s ease-in;
}
.adicionando {
animation: adicionar .18s ease-out;
}
@keyframes adicionar {
from {
opacity: .7;
transform: scale(.5);
}
to {
opactiy: 1;
transform: scale(1);
}
}
@keyframes excluir {
from {
opacity: 1;
transform: scale(1);
}
to {
opactiy: 0;
transform: scale(0);
}
}