-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGallery.css
More file actions
52 lines (49 loc) · 772 Bytes
/
Gallery.css
File metadata and controls
52 lines (49 loc) · 772 Bytes
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
* {
box-sizing: border-box;
}
body {
margin: 0;
overflow: auto;
background-color: #282c34;
width: 100vw;
min-height: 100vh;
overflow-y: auto;
overflow-x: hidden;
display: flex;
justify-content: space-evenly;
align-items: center;
flex-wrap: wrap;
}
#camera {
position: fixed;
height: 4.5rem;
width: 4.5rem;
display: flex;
justify-content: center;
align-items: center;
right: 0.7rem;
bottom: 5rem;
font-size: 2.5rem;
border: 4px solid white;
border-radius: 100%;
color: white;
}
.media-container {
height: 20rem;
width: 18rem;
margin: 1rem;
border: 1px solid white;
}
.media {
width: 100%;
height: 80%;
}
button {
display: block;
width: 100%;
height: 10%;
}
video,img{
height: 16rem;
width: 17.8rem;
}