-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
70 lines (61 loc) · 1.19 KB
/
style.css
File metadata and controls
70 lines (61 loc) · 1.19 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
70
body{
margin: 0;
padding: 0;
background-color: rgb(255, 255, 255);
}
#heading {
background-color: black;
color: white;
padding: 10px;
height: 30px;
font-size: 26;
position: sticky;
top: 0;
left: 0;
right: 0;
}
#search {
padding: 0.75rem 1rem;
border: 1px solid #333;
margin: 1rem auto;
border-radius: 0.5rem;
font-size: 1rem;
display: block;
width: 87%;
min-width: 350px;
/* position: sticky;
top: 67px; */
}
#container {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
/* margin-top: 60px; */
}
#box-container {
margin: 10px;
padding: 20px;
width: 350px;
height: 160px;
border: 1px solid gray;
background-color: rgba(241, 243, 245, 0.473);
border-radius: 5px;
}
#upper-part{
display: flex;
justify-content: space-between;
align-items: center;
}
.status{
margin-bottom: 5px;
background-color: rgb(100, 221, 100);
padding: 10px;
border-radius: 100px;
}
.yellow {
background-color: rgb(224, 224, 59);
}
.red{
background-color: rgb(233, 50, 50);
}