gallery.accords-library.com/client/css/core-general.styl

263 lines
6.8 KiB
Stylus
Raw Normal View History

2016-04-13 18:06:34 +00:00
@import colors
@import mixins
2016-04-13 18:06:34 +00:00
/* latin */
@font-face
font-family: 'Open Sans';
font-style: normal;
font-weight: 400;
src: local('Open Sans'), local('OpenSans'), url(/fonts/open_sans.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
2016-05-15 09:24:52 +00:00
/* make <body> cover entire viewport */
html
height: 100%
body
min-height: 100%
2016-04-13 18:06:34 +00:00
body
background: $window-color
2016-04-13 18:06:34 +00:00
overflow-y: scroll
margin: 0
color: $text-color
font-family: 'Open Sans', sans-serif
font-size: 1em
line-height: 1.4
@media (max-width: 800px)
font-size: 0.875em
@media (max-width: 1200px)
font-size: 0.95em
2016-04-13 18:06:34 +00:00
h1, h2, h3
font-weight: normal
margin-bottom: 1em
h1
font-size: 2em
h2
font-size: 1.5em
th
font-weight: normal
2016-04-13 18:06:34 +00:00
a
cursor: pointer
2016-04-13 18:06:34 +00:00
color: $main-color
text-decoration: none
transition: color 0.1s linear
2016-05-10 08:57:59 +00:00
&.inactive
color: $inactive-link-color
cursor: default
&.icon
color: $inactive-link-color
opacity: .5
2016-04-29 10:48:46 +00:00
&:focus
outline: 2px solid $main-color
.vim-nav-hint
position: absolute
visibility: hidden
2016-07-05 19:20:28 +00:00
a.append, span.append
margin-left: 1em
form .fa-question-circle-o
font-size: 110%
vertical-align: middle
2016-04-13 18:06:34 +00:00
#content-holder
padding: 1.5em
2016-04-13 18:06:34 +00:00
text-align: center
@media (max-width: 1000px)
padding: 1em
2016-04-13 18:06:34 +00:00
>.content-wrapper
box-sizing: border-box /* make max-width: 100% on this element include padding */
2016-04-13 18:06:34 +00:00
text-align: left
display: inline-block
margin: 0 auto
>*:first-child, form h1
2016-04-13 18:06:34 +00:00
margin-top: 0
nav.buttons
ul
display: block
max-width: 100%
white-space: nowrap
overflow-x: auto
&::-webkit-scrollbar
height: 6px
background-color: $scrollbar-bg-color
&::-webkit-scrollbar-thumb
background-color: $scrollbar-thumb-color
2016-04-13 18:06:34 +00:00
>.content-wrapper:not(.transparent)
2016-06-13 20:34:39 +00:00
background: $top-navigation-color
padding: 1.8em
@media (max-width: 1000px)
padding: 1.5em
2016-04-13 18:06:34 +00:00
hr
border: 0
border-top: 1px solid $line-color
margin: 1em 0
padding: 0
2016-06-05 19:46:57 +00:00
nav
ul
list-style-type: none
2016-04-13 18:06:34 +00:00
padding: 0
margin: 0
2016-06-05 19:46:57 +00:00
display: inline-block
li
display: block
padding: 0
2016-04-13 18:06:34 +00:00
margin: 0
2016-06-05 19:46:57 +00:00
a
display: inline-block
img
margin: 0
vertical-align: top /* fix ghost margin under the image */
&.buttons
margin: 1em 0
line-height: 2.3em
vertical-align: middle
ul
li
display: inline-block
li a
padding: 0 1.2em
li:not(.active) a
color: $inactive-tab-text-color
li:hover:not(.active) a
color: $active-tab-text-color
li.active a
background: $active-tab-background-color
color: $active-tab-text-color
:focus
background: $focused-tab-background-color
outline: 0
2016-06-13 20:34:39 +00:00
&#top-navigation
background: $top-navigation-color
2016-06-05 19:46:57 +00:00
margin: 0
ul
display: block
text-align: right
li
display: inline-block
float: left
a
padding: 0 1.5em
2017-12-16 02:45:51 +00:00
#mobile-navigation-toggle
display: none
width: 100%
padding: 0 1em
2017-12-16 02:45:51 +00:00
line-height: 2.3em
font-family: inherit
border: none
background: none
color: $active-tab-text-color
.site-name
display: block
float: left
max-width: 50vw
overflow: hidden
text-overflow: ellipsis
.toggle-icon
display: block
float: right
@media (max-width: 1000px)
text-align: left
li
display: none
float: none
a
display: block
padding: 0 1em
2017-12-16 02:45:51 +00:00
#mobile-navigation-toggle
display: block
&.opened
li
display: block
2016-06-05 19:46:57 +00:00
ul li[data-name=account],
ul li[data-name=register],
ul li[data-name=login],
ul li[data-name=logout],
ul li[data-name=settings],
ul li[data-name=help]
float: none
.access-key
text-decoration: underline
.thumbnail
width: 1.5em
height: 1.5em
margin: calc((2.3em - 1.5em) / 2)
margin-right: 0.6em
margin-left: calc(0.6em - 1.2em)
float: left
2017-12-16 02:45:51 +00:00
@media (max-width: 1000px)
display: none
2016-04-13 18:06:34 +00:00
2016-05-29 10:24:48 +00:00
a .access-key
text-decoration: underline
2016-04-13 18:06:34 +00:00
.messages
margin: 0 auto
text-align: left
2016-04-13 18:06:34 +00:00
.message
box-sizing: border-box
width: 100%
max-width: 40em
2016-08-02 09:36:29 +00:00
margin: 0 0 1em 0
2016-04-13 18:06:34 +00:00
display: inline-block
text-align: left
padding: 0.5em 1em
&.info
border: 1px solid $message-info-border-color
background: $message-info-background-color
&.error
border: 1px solid $message-error-border-color
background: $message-error-background-color
&.success
border: 1px solid $message-success-border-color
background: $message-success-background-color
2016-04-13 18:06:34 +00:00
.thumbnail
/*background-image: attr(data-src url)*/ /* not available yet */
vertical-align: middle
2016-04-13 18:06:34 +00:00
background-repeat: no-repeat
background-size: cover
background-position: center
display: inline-block
width: 20px
height: 20px
&.empty
background-image: url('/img/transparency_grid.png')
background-repeat: repeat
background-size: initial
img
opacity: 0
width: 100%
height: 100%
video
width: 100%
height: 100%
2016-04-13 18:06:34 +00:00
.flexbox-dummy
height: 0 !important
padding-top: 0 !important
padding-bottom: 0 !important
margin-top: 0 !important
margin-bottom: 0 !important
2017-12-16 02:45:51 +00:00
.table-wrap
2017-12-18 18:06:24 +00:00
overflow-x: auto
&::-webkit-scrollbar
height: 6px
background-color: $scrollbar-bg-color
&::-webkit-scrollbar-thumb
background-color: $scrollbar-thumb-color
2017-12-16 02:45:51 +00:00
/* hack to prevent text from being copied */
[data-pseudo-content]:before {
content: attr(data-pseudo-content)
}