-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgalleryStyle.css
68 lines (58 loc) · 961 Bytes
/
galleryStyle.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
*{
box-sizing: border-box;
}
body{
margin: 0;
}
.media-container{
display: flex;
justify-content: space-evenly;
flex-wrap: wrap;
}
.media-container img{
height: 40%;
width: 40%;
}
#camera{
position: fixed;
height: 5rem;
width: 5rem;
border-radius:50%;
right: 2rem;
bottom: 2rem;
outline: none;
border: none;
border: 1px solid;
}
.media-card{
height: 30rem;
width: 30rem;
border: 1px solid;
margin: 0.5rem;
}
.actual-media{
height: 80%;
width: 100%;
}
.media-buttons{
height: 20%;
width: 100%;
}
.actual-media img, .actual-media video{
height: 100%;
width: 100%;
}
.media-buttons button{
height: 50%;
width: 100%;
border: none;
outline: none;
color: white;
font-size: 1.2rem;
}
#download{
background-color: black;
}
#delete{
background-color: red;
}