php-gallery/css/image.css

75 lines
1.3 KiB
CSS
Raw Normal View History

2022-07-22 00:21:48 +00:00
/*
-=-=-= IMAGE FULLSCREEN =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
*/
.image-container {
margin: 0 0 2rem; padding: 0;
width: calc(100vw - var(--space-medium));
2022-07-23 14:03:11 +00:00
height: 69vh;
2022-07-22 00:21:48 +00:00
position: relative;
2022-07-24 12:20:12 +00:00
transition: height 0.15s cubic-bezier(.19,1,.22,1);
2022-07-22 00:21:48 +00:00
}
2022-07-23 14:03:11 +00:00
@media (max-width: 600px) {
.image-container {
2022-07-24 09:43:54 +00:00
height: 35vh;
2022-07-23 14:03:11 +00:00
}
}
2022-07-22 00:21:48 +00:00
.image {
max-width: 100%;
width: auto;
max-height: 100%;
height: auto;
position: absolute;
top: 50%; left: 50%;
transform: translate(-50%, -50%);
2022-07-25 15:13:26 +00:00
/*background-color: var(--bg);
outline: 0.5rem solid var(--bg);*/
2022-07-22 00:21:48 +00:00
border-radius: var(--rad);
}
.image-description {
2022-07-24 09:43:54 +00:00
margin: 0 0 2rem; padding: 0.5rem;
2022-07-22 00:21:48 +00:00
background-color: var(--bg); color: var(--fg);
border: 0.2rem solid var(--green);
outline: 0.5rem solid var(--bg);
border-radius: var(--rad);
box-shadow: var(--shadow);
}
.image-detail {
2022-07-24 09:43:54 +00:00
margin: 0 0 2rem; padding: 0.5rem;
2022-07-22 00:21:48 +00:00
background-color: var(--bg); color: var(--fg);
2022-07-24 09:43:54 +00:00
word-wrap: break-word;
2022-07-22 00:21:48 +00:00
border: 0.2rem solid var(--green);
outline: 0.5rem solid var(--bg);
border-radius: var(--rad);
box-shadow: var(--shadow);
}
.danger-zone {
2022-07-24 09:43:54 +00:00
margin: 0 0 2rem; padding: 0.5rem;
2022-07-22 00:21:48 +00:00
background-color: var(--bg); color: var(--fg);
border: 0.2rem solid var(--red);
outline: 0.5rem solid var(--bg);
border-radius: var(--rad);
box-shadow: var(--shadow);
}