mirror of
https://github.com/claradex/nativegallery.git
synced 2025-06-06 14:26:58 +03:00
update css
This commit is contained in:
parent
2009416c35
commit
950d856489
3 changed files with 109 additions and 2 deletions
|
@ -12,7 +12,7 @@
|
||||||
.cmt-submit { font-size:11px; color:#777; }
|
.cmt-submit { font-size:11px; color:#777; }
|
||||||
.cmt-subscribe { padding:11px; }
|
.cmt-subscribe { padding:11px; }
|
||||||
|
|
||||||
#wtext { width:100%; height:150px; margin-bottom:10px; }
|
#wtext { width:100%; height:150px; margin-bottom:10px; overflow: auto; word-break: break-word; }
|
||||||
|
|
||||||
.wvote { margin-left:5px; position:relative; z-index:10; }
|
.wvote { margin-left:5px; position:relative; z-index:10; }
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#photobar { margin:0 -20px; position:relative; background-color:#333; }
|
#photobar { margin:0 -20px; position:relative; background-color:#333; }
|
||||||
#underphoto_frame { display:inline-block; }
|
#underphoto_frame { display:inline-block; }
|
||||||
|
|
||||||
#ph { max-width:50%; cursor:zoom-in; }
|
#ph { max-width:30%; cursor:zoom-in; }
|
||||||
#ph.v-zoom { max-height:calc(100vh - 30px); }
|
#ph.v-zoom { max-height:calc(100vh - 30px); }
|
||||||
#ph.zoomed { max-width:none; max-height:none; cursor:zoom-out; }
|
#ph.zoomed { max-width:none; max-height:none; cursor:zoom-out; }
|
||||||
#ph.nozoom { cursor:default; }
|
#ph.nozoom { cursor:default; }
|
||||||
|
|
|
@ -808,4 +808,111 @@ input.ml-button { height:22px; }
|
||||||
.form-submit input[type="submit"] {
|
.form-submit input[type="submit"] {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
.tabs {
|
||||||
|
font-family: Tahoma, Arial, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tab-nav {
|
||||||
|
padding: 4px 6px 0;
|
||||||
|
display: flex;
|
||||||
|
gap: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tab-item {
|
||||||
|
background: linear-gradient(to bottom, #f3f3f3 0%, #e6e6e6 100%);
|
||||||
|
border: 1px solid #7a7a7a;
|
||||||
|
border-bottom: 0;
|
||||||
|
border-radius: 3px 3px 0 0;
|
||||||
|
padding: 4px 12px;
|
||||||
|
cursor: pointer;
|
||||||
|
color: #1a1a1a;
|
||||||
|
position: relative;
|
||||||
|
outline: none;
|
||||||
|
transition: all 0.15s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tab-item:hover:not(.active):not(:disabled) {
|
||||||
|
background: linear-gradient(to bottom, #ffffff 0%, #f0f0f0 100%);
|
||||||
|
}
|
||||||
|
|
||||||
|
.tab-item.active {
|
||||||
|
background: #ffffff;
|
||||||
|
border-color: #181c20;
|
||||||
|
color: #000000;
|
||||||
|
padding-bottom: 5px;
|
||||||
|
margin-bottom: -1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tab-item:disabled {
|
||||||
|
background: #eeeeee;
|
||||||
|
color: #6d6d6d;
|
||||||
|
cursor: not-allowed;
|
||||||
|
border-color: #bdbdbd;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tab-content {
|
||||||
|
border-top: 0;
|
||||||
|
padding: 12px;
|
||||||
|
background: #ffffff;
|
||||||
|
min-height: 200px;
|
||||||
|
}
|
||||||
|
.styled-input {
|
||||||
|
position: relative;
|
||||||
|
margin: 20px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.styled-input input {
|
||||||
|
width: 100%;
|
||||||
|
padding: 10px 10px 10px 0;
|
||||||
|
font-size: 16px;
|
||||||
|
border: none;
|
||||||
|
border-bottom: 2px solid #ccc;
|
||||||
|
background: transparent;
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.styled-input input:focus {
|
||||||
|
border-bottom: 2px solid #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.styled-input label {
|
||||||
|
position: absolute;
|
||||||
|
top: 10px;
|
||||||
|
left: 0;
|
||||||
|
font-size: 16px;
|
||||||
|
color: #999;
|
||||||
|
pointer-events: none;
|
||||||
|
transition: 0.2s ease all;
|
||||||
|
}
|
||||||
|
|
||||||
|
.styled-input input:focus~label,
|
||||||
|
.styled-input input:valid~label {
|
||||||
|
top: -20px;
|
||||||
|
font-size: 12px;
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
/* Для базовой анимации */
|
||||||
|
.prw-animate {
|
||||||
|
background-size: cover;
|
||||||
|
background-position: center;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Эффекты загрузки */
|
||||||
|
.blur-load {
|
||||||
|
filter: blur(10px);
|
||||||
|
transition: filter 0.4s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.blur-load.loaded {
|
||||||
|
filter: blur(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
.hdshade {
|
||||||
|
position: absolute;
|
||||||
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
}
|
}
|
Loading…
Reference in a new issue