-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
62 lines (62 loc) · 1.08 KB
/
style.css
File metadata and controls
62 lines (62 loc) · 1.08 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
*{
padding: 0;
margin: 0;
color: white;
background-color: rgb(235, 152, 152);
}
form{
margin: 20px;
}
input{
background-color: white;
color: black;
}
button{
background-color: green;
padding: 20px;
margin: 0 20px;
}
.card{
margin:5px;
/* background-color: rgb(31, 31, 31); */
padding: 5px;
display: flex;
max-height: 100px;
font-family: "Roboto","Arial",sans-serif;
}
.card .image{
position: relative;
padding: 5px;
}
.card img{
position: relative;
height: 100px;
border-radius: 7px;
}
.card .time{
position: absolute;
color: white;
z-index: 1;
bottom: 2px;
background-color: rgba(0, 0, 0, 0.811);
padding: 5px;
font-size: 0.8rem;
border-radius: 5px;
right: 10px;
}
.card .details{
padding: 5px;
}
.card h2{
font-size: 1rem;
font-weight: 700;
margin-bottom: 8px;
padding: 5px 0px;
}
.card .general{
display: flex;
color: rgb(175, 175, 175);
font-size: 0.8rem;
padding-top: 5px;
gap:5px;
}