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
|
.shutterbutton,
.gallerybutton {
color: white;
background-color: transparent;
border-radius: 999px;
padding: 0;
outline-offset: 5px;
}
.shutterbutton:focus:focus-visible,
.gallerybutton:focus:focus-visible {
outline-offset: 1px;
}
.shutterbutton {
min-height: 64px;
min-width: 64px;
}
.gallerybutton,
.camerabutton {
min-height: 44px;
min-width: 44px;
}
.shutterbutton:active,
.gallerybutton:active {
opacity: .97;
}
gallery {
background-color: black;
}
.videoplayercontrols {
margin-left: 18px;
margin-right: 18px;
padding: 6px;
border-radius: 50px;
}
.videoplayercontrols button {
border-radius: 999px;
}
.controlsframe {
background: rgba(0, 0, 0, 0.45);
}
camera .controlsframe {
padding: 12px;
}
camera:not(.mobile) .bottom.controlsframe {
padding-left: 18px;
padding-right: 24px;
}
camera:not(.mobile) .startcontrolsframe {
background: none;
}
gallery headerbar {
background: rgba(0, 0, 0, 0.45);
}
gallery .controlsframe {
padding: 6px;
}
gallery button.back {
border-radius: 500px;
}
button.gallerycontrols.circular {
padding: 9px;
min-width: 24px;
min-height: 24px;
}
camera .recording-label {
padding: 12px 24px;
border-radius: 500px;
margin-bottom: 100px;
}
camera.portrait .recording-label {
margin-bottom: 24px;
}
|