-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.css
More file actions
115 lines (101 loc) · 1.89 KB
/
test.css
File metadata and controls
115 lines (101 loc) · 1.89 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
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
*{
padding: 0;
margin: 0;
}
body{
background: linear-gradient(to right,#84ffc9,#aab2ff, #40c9ff, #eca0ff);
}
/* Navigation bar */
nav{
display: flex;
align-items: center;
background-color: rgb(183, 212, 214);
height: 70px;
justify-content: space-between;
}
.searchbox{
display: flex;
align-items: center;
padding: 2px;
margin: 5%;
border-radius: 10px;
font-size: 1.2rem;
}
.searchbar{
width: 100%;
min-width: 200px;
height: 25px;
border-radius: 10px;
border: none;
outline: none;
}
i{
background: white;
padding: 5px;
border-radius: 40px;
}
.profile{
margin: 5%;
padding: auto;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
border:2px solid white;
color:white;
margin-left: 10px;
font-size: 1.5rem;
background-color: rgb(10, 71, 10);
width:40px;
height: 40px;
cursor: pointer;
}
.profile:hover{
background:rgb(5, 52, 5);
}
/* Container zone */
.menucontainer{
background-color: white;
width: 90%;
height: 90%;
padding: 10px;
margin: 5%;
overflow-y: scroll;
}
.entry{
display:flex;
justify-content: space-between;
margin:10px;
background-color: #f0f0f0;
border-radius: 10px;
padding:5px 10px;
}
.buttoncontainer{
display: flex;
align-items: center;
gap: 10px;
}
.styledetailsbutton{
background-color: rgb(45, 39, 39);
color: white;
border: none;
border-radius: 20px;
min-width:100px;
min-height: 30px;
cursor: pointer;
}
.styledetailsbutton:hover{
background-color: rgb(5, 5, 8);
}
.styledownloadbutton{
background-color: rgb(46, 46, 135);
color: white;
border: none;
border-radius: 20px;
min-width:100px;
min-height: 30px;
cursor: pointer;
}
.styledownloadbutton:hover{
background-color: rgb(16, 16, 78);
}