Update css to fit blocks within poster images
This commit is contained in:
parent
609ba57078
commit
9c8df03c36
@ -1,12 +1,18 @@
|
||||
template,
|
||||
[hidden="hidden"],
|
||||
.media[hidden] {
|
||||
display: none;
|
||||
:root {
|
||||
--link-shadow: 1px 1px 1px #000;
|
||||
--shadow: 1px 2px 1px rgba(0, 0, 0, 0.85);
|
||||
--title-overlay: rgba(0, 0, 0, 0.45);
|
||||
--text-color: #ffffff;
|
||||
--normal-padding: 0.25em 0.125em;
|
||||
--link-hover-color: #7d12db;
|
||||
--edit-link-hover-color: #db7d12;
|
||||
--edit-link-color: #12db18;
|
||||
--radius: 5px;
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0.5em;
|
||||
}
|
||||
template, [hidden="hidden"], .media[hidden] {display:none}
|
||||
|
||||
body {margin: 0.5em;}
|
||||
|
||||
button {
|
||||
background:rgba(255,255,255,0.65);
|
||||
@ -23,8 +29,7 @@ td {
|
||||
padding:1rem;
|
||||
}
|
||||
|
||||
thead td,
|
||||
thead th {
|
||||
thead td, thead th {
|
||||
padding:0.5em;
|
||||
padding:0.5rem;
|
||||
}
|
||||
@ -37,9 +42,8 @@ tbody > tr:nth-child(odd) {
|
||||
background: #ddd;
|
||||
}
|
||||
|
||||
a:hover,
|
||||
a:active {
|
||||
color: #7d12db;
|
||||
a:hover, a:active {
|
||||
color: var(--link-hover-color)
|
||||
}
|
||||
|
||||
/* -----------------------------------------------------------------------------
|
||||
@ -47,105 +51,38 @@ a:active {
|
||||
------------------------------------------------------------------------------*/
|
||||
|
||||
.bracketed {
|
||||
color: #12db18;
|
||||
color: var(--edit-link-color);
|
||||
}
|
||||
.bracketed, h1 a {
|
||||
text-shadow: var(--link-shadow);
|
||||
}
|
||||
.bracketed:before {content: '[\00a0'}
|
||||
.bracketed:after {content: '\00a0]'}
|
||||
.bracketed:hover, .bracketed:active {
|
||||
color: var(--edit-link-hover-color)
|
||||
}
|
||||
|
||||
.bracketed,
|
||||
h1 a {
|
||||
text-shadow: 1px 1px 1px #000;
|
||||
}
|
||||
|
||||
.bracketed:before {
|
||||
content: '[\00a0';
|
||||
}
|
||||
|
||||
.bracketed:after {
|
||||
content: '\00a0]';
|
||||
}
|
||||
|
||||
.bracketed:hover,
|
||||
.bracketed:active {
|
||||
color: #db7d12;
|
||||
}
|
||||
|
||||
.grow-1 {
|
||||
-webkit-box-flex: 1;
|
||||
-webkit-flex-grow: 1;
|
||||
-ms-flex-positive: 1;
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
.flex-wrap {
|
||||
-webkit-flex-wrap: wrap;
|
||||
-ms-flex-wrap: wrap;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.flex-no-wrap {
|
||||
-webkit-flex-wrap: nowrap;
|
||||
-ms-flex-wrap: nowrap;
|
||||
flex-wrap: nowrap;
|
||||
}
|
||||
|
||||
.flex-align-end {
|
||||
-webkit-box-align: end;
|
||||
-webkit-align-items: flex-end;
|
||||
-ms-flex-align: end;
|
||||
align-items: flex-end;
|
||||
}
|
||||
|
||||
.flex-align-space-around {
|
||||
-webkit-align-content: space-around;
|
||||
-ms-flex-line-pack: distribute;
|
||||
align-content: space-around;
|
||||
}
|
||||
|
||||
.flex-justify-space-around {
|
||||
-webkit-justify-content: space-around;
|
||||
-ms-flex-pack: distribute;
|
||||
justify-content: space-around;
|
||||
}
|
||||
|
||||
.flex-self-center {
|
||||
-webkit-align-self: center;
|
||||
-ms-flex-item-align: center;
|
||||
align-self: center;
|
||||
}
|
||||
|
||||
.flex {
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
}
|
||||
.grow-1 {-webkit-box-flex: 1;flex-grow: 1}
|
||||
.flex-wrap {flex-wrap: wrap}
|
||||
.flex-no-wrap {flex-wrap: nowrap}
|
||||
.flex-align-end {-webkit-box-align: end;align-items: flex-end}
|
||||
.flex-align-space-around {align-content: space-around}
|
||||
.flex-justify-space-around {justify-content: space-around}
|
||||
.flex-self-center {align-self:center}
|
||||
.flex {display: -webkit-box;display: flex}
|
||||
|
||||
.small-font {
|
||||
font-size:1.6rem;
|
||||
}
|
||||
|
||||
.justify {
|
||||
text-align: justify;
|
||||
}
|
||||
.justify {text-align:justify}
|
||||
.align_center {text-align:center}
|
||||
.align_left {text-align:left}
|
||||
.align_right {text-align:right}
|
||||
|
||||
.align_center {
|
||||
text-align: center;
|
||||
}
|
||||
.valign_top {vertical-align:top}
|
||||
|
||||
.align_left {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.align_right {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.valign_top {
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.no_border {
|
||||
border: none;
|
||||
}
|
||||
.no_border {border:none}
|
||||
|
||||
.media-wrap {
|
||||
text-align:center;
|
||||
@ -158,25 +95,22 @@ h1 a {
|
||||
color:#fff;
|
||||
}
|
||||
|
||||
.danger:hover,
|
||||
.danger:active {
|
||||
.danger:hover, .danger:active {
|
||||
background-color: #924949;
|
||||
border-color: #ff4136;
|
||||
color:#fff;
|
||||
}
|
||||
|
||||
.user-btn {
|
||||
border-color: #12db18;
|
||||
color: #12db18;
|
||||
text-shadow: 1px 1px 1px #000;
|
||||
border-color: var(--edit-link-color);
|
||||
color: var(--edit-link-color);
|
||||
text-shadow: var(--link-shadow);
|
||||
padding:0 0.5em;
|
||||
padding:0 0.5rem;
|
||||
}
|
||||
|
||||
.user-btn:hover,
|
||||
.user-btn:active {
|
||||
border-color: #db7d12;
|
||||
background-color: #db7d12;
|
||||
.user-btn:hover, .user-btn:active {
|
||||
border-color: var(--edit-link-hover-color);
|
||||
background-color: var(--edit-link-hover-color);
|
||||
}
|
||||
|
||||
/* -----------------------------------------------------------------------------
|
||||
@ -230,7 +164,6 @@ h1 a {
|
||||
-webkit-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
|
||||
transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
|
||||
transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
|
||||
@ -242,7 +175,6 @@ h1 a {
|
||||
-webkit-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
|
||||
transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
|
||||
transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
|
||||
@ -254,7 +186,6 @@ h1 a {
|
||||
-webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
|
||||
transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
|
||||
transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
|
||||
@ -266,7 +197,6 @@ h1 a {
|
||||
-webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
|
||||
transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
|
||||
transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
|
||||
@ -278,7 +208,6 @@ h1 a {
|
||||
-webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
|
||||
transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
|
||||
transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
|
||||
@ -290,7 +219,6 @@ h1 a {
|
||||
-webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
|
||||
transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
|
||||
transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
|
||||
@ -300,31 +228,24 @@ h1 a {
|
||||
/* -----------------------------------------------------------------------------
|
||||
Table sorting and form styles
|
||||
------------------------------------------------------------------------------*/
|
||||
|
||||
.sorting,
|
||||
.sorting_asc,
|
||||
.sorting_desc {
|
||||
vertical-align:text-bottom;
|
||||
}
|
||||
|
||||
.sorting::before {
|
||||
content: " ↕\00a0";
|
||||
}
|
||||
|
||||
.sorting_asc::before {
|
||||
content: " ↑\00a0";
|
||||
}
|
||||
|
||||
.sorting_desc::before {
|
||||
content: " ↓\00a0";
|
||||
}
|
||||
|
||||
.form {
|
||||
width: 100%;
|
||||
}
|
||||
.form { width:100%; }
|
||||
|
||||
.form thead th,
|
||||
.form thead tr {
|
||||
.form thead th, .form thead tr {
|
||||
background: inherit;
|
||||
border:0;
|
||||
}
|
||||
@ -334,7 +255,6 @@ h1 a {
|
||||
min-width:25px;
|
||||
max-width:30%;
|
||||
}
|
||||
|
||||
.form tr > td:nth-child(even) {
|
||||
text-align:left;
|
||||
width:70%;
|
||||
@ -343,10 +263,7 @@ h1 a {
|
||||
.invisible tbody > tr:nth-child(odd) {
|
||||
background: inherit;
|
||||
}
|
||||
|
||||
.invisible tr,
|
||||
.invisible td,
|
||||
.invisible th {
|
||||
.invisible tr, .invisible td, .invisible th {
|
||||
border:0;
|
||||
}
|
||||
|
||||
@ -399,9 +316,8 @@ h1 a {
|
||||
border:1px solid #1f8454;
|
||||
background: #70dda9;
|
||||
}
|
||||
|
||||
.message.success .icon::after {
|
||||
content: '✔';
|
||||
content: '✔'
|
||||
}
|
||||
|
||||
.message.info{
|
||||
@ -423,8 +339,8 @@ h1 a {
|
||||
display:inline-block;
|
||||
text-align:center;
|
||||
width:220px;
|
||||
height: 319px;
|
||||
margin: 0.25em 0.125em;
|
||||
height:311px;
|
||||
margin: var(--normal-padding);
|
||||
}
|
||||
|
||||
.media .edit_buttons > button {
|
||||
@ -435,15 +351,14 @@ h1 a {
|
||||
.media_metadata > div,
|
||||
.medium_metadata > div,
|
||||
.row {
|
||||
text-shadow: 1px 2px 1px rgba(0, 0, 0, 0.85);
|
||||
background: rgba(0, 0, 0, 0.45);
|
||||
color: #ffffff;
|
||||
padding: 0.25em 0.125em;
|
||||
text-shadow: var(--shadow);
|
||||
background: var(--title-overlay);
|
||||
color: var(--text-color);
|
||||
padding: var(--normal-padding);
|
||||
text-align:right;
|
||||
}
|
||||
|
||||
.media_type,
|
||||
.age_rating {
|
||||
.media_type, .age_rating {
|
||||
text-align:left;
|
||||
}
|
||||
|
||||
@ -467,14 +382,16 @@ h1 a {
|
||||
.media:hover > .name,
|
||||
.media:hover > .media_metadata > div,
|
||||
.media:hover > .medium_metadata > div,
|
||||
.media:hover > .table .row {
|
||||
.media:hover > .table .row
|
||||
{
|
||||
-webkit-transition: .25s ease;
|
||||
transition: .25s ease;
|
||||
background:rgba(0,0,0,0.75);
|
||||
}
|
||||
|
||||
.media:hover > button[hidden],
|
||||
.media:hover > .edit_buttons[hidden] {
|
||||
.media:hover > .edit_buttons[hidden]
|
||||
{
|
||||
-webkit-transition: .25s ease;
|
||||
transition: .25s ease;
|
||||
display:block;
|
||||
@ -483,15 +400,15 @@ h1 a {
|
||||
.media > .name > a {
|
||||
background:none;
|
||||
color:#fff;
|
||||
text-shadow: 1px 2px 1px rgba(0, 0, 0, 0.85);
|
||||
text-shadow: var(--shadow);
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* -----------------------------------------------------------------------------
|
||||
Anime-list-specific styles
|
||||
------------------------------------------------------------------------------*/
|
||||
|
||||
.anime .name,
|
||||
.manga .name {
|
||||
.anime .name, .manga .name {
|
||||
text-align:center;
|
||||
width:100%;
|
||||
padding:0.5em 0.25em;
|
||||
@ -508,43 +425,32 @@ h1 a {
|
||||
text-align:center;
|
||||
}
|
||||
|
||||
.anime .table,
|
||||
.manga .table {
|
||||
|
||||
.anime .table, .manga .table {
|
||||
position:absolute;
|
||||
bottom:0;
|
||||
left:0;
|
||||
width:100%;
|
||||
}
|
||||
|
||||
.anime .row,
|
||||
.manga .row {
|
||||
.anime .row, .manga .row {
|
||||
width:100%;
|
||||
background: rgba(0, 0, 0, 0.45);
|
||||
background: var(--title-overlay);
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-align-content: space-around;
|
||||
-ms-flex-line-pack: distribute;
|
||||
align-content: space-around;
|
||||
-webkit-justify-content: space-around;
|
||||
-ms-flex-pack: distribute;
|
||||
justify-content: space-around;
|
||||
text-align:center;
|
||||
padding:0 inherit;
|
||||
}
|
||||
|
||||
.anime .row > span,
|
||||
.manga .row > span {
|
||||
.anime .row > span, .manga .row > span {
|
||||
text-align:left;
|
||||
}
|
||||
|
||||
.anime .row > div,
|
||||
.manga .row > div {
|
||||
.anime .row > div, .manga .row > div {
|
||||
font-size:0.8em;
|
||||
display:flex-item;
|
||||
-webkit-align-self: center;
|
||||
-ms-flex-item-align: center;
|
||||
align-self:center;
|
||||
text-align:center;
|
||||
vertical-align:middle;
|
||||
@ -561,15 +467,13 @@ h1 a {
|
||||
/* -----------------------------------------------------------------------------
|
||||
Manga-list-specific styles
|
||||
------------------------------------------------------------------------------*/
|
||||
|
||||
.manga .row {
|
||||
padding:1px;
|
||||
}
|
||||
|
||||
.manga .media {
|
||||
border:1px solid #ddd;
|
||||
width: 200px;
|
||||
height: 290px;
|
||||
height:310px;
|
||||
margin:0.25em;
|
||||
}
|
||||
|
||||
@ -581,10 +485,10 @@ h1 a {
|
||||
left: calc(50% - 95px);
|
||||
}
|
||||
|
||||
|
||||
/* -----------------------------------------------------------------------------
|
||||
Search page styles
|
||||
------------------------------------------------------------------------------*/
|
||||
|
||||
.media.search > .name {
|
||||
background-color:#555;
|
||||
background-color: rgba(000,000,000,0.35);
|
||||
@ -619,9 +523,7 @@ h1 a {
|
||||
#series_list article.media {
|
||||
position:relative;
|
||||
}
|
||||
|
||||
#series_list .name,
|
||||
#series_list .name label {
|
||||
#series_list .name, #series_list .name label {
|
||||
position:absolute;
|
||||
display:block;
|
||||
top:0;
|
||||
@ -633,7 +535,6 @@ h1 a {
|
||||
/* ----------------------------------------------------------------------------
|
||||
Details page styles
|
||||
-----------------------------------------------------------------------------*/
|
||||
|
||||
.details {
|
||||
margin: 1.5rem auto 0 auto;
|
||||
max-width:93rem;
|
||||
@ -657,7 +558,6 @@ h1 a {
|
||||
.details table {
|
||||
max-width:300px;
|
||||
}
|
||||
|
||||
.details td {
|
||||
padding:0 1.5rem;
|
||||
}
|
||||
@ -671,7 +571,6 @@ h1 a {
|
||||
white-space:nowrap;
|
||||
text-align:right;
|
||||
}
|
||||
|
||||
.details td:nth-child(even) {
|
||||
text-align:left;
|
||||
}
|
||||
|
@ -296,7 +296,7 @@ a:hover, a:active {
|
||||
display:inline-block;
|
||||
text-align:center;
|
||||
width:220px;
|
||||
height:319px;
|
||||
height:311px;
|
||||
margin: var(--normal-padding);
|
||||
}
|
||||
|
||||
@ -427,8 +427,7 @@ a:hover, a:active {
|
||||
|
||||
.manga .media {
|
||||
border:1px solid #ddd;
|
||||
width:200px;
|
||||
height:290px;
|
||||
height:310px;
|
||||
margin:0.25em;
|
||||
}
|
||||
|
||||
|
@ -1,45 +1,52 @@
|
||||
:root {
|
||||
:root
|
||||
{
|
||||
--default-font-list:'Open Sans', 'Nimbus Sans L', 'Helvetica Neue', Helvetica, 'Lucida Grande', sans-serif;
|
||||
-ms-text-size-adjust:100%;
|
||||
-webkit-text-size-adjust:100%;
|
||||
box-sizing:border-box;
|
||||
cursor:default;
|
||||
font-family: 'Open Sans', 'Nimbus Sans L', 'Helvetica Neue', Helvetica, 'Lucida Grande', sans-serif;
|
||||
font-family:var(--default-font-list);
|
||||
line-height:1.4;
|
||||
overflow-y:scroll;
|
||||
-webkit-text-size-adjust: 100%;
|
||||
-ms-text-size-adjust: 100%;
|
||||
text-size-adjust:100%;
|
||||
scroll-behavior: smooth;
|
||||
}
|
||||
|
||||
audio:not([controls]) {
|
||||
audio:not([controls])
|
||||
{
|
||||
display:none;
|
||||
}
|
||||
|
||||
details {
|
||||
details
|
||||
{
|
||||
display:block;
|
||||
}
|
||||
|
||||
input[type=search] {
|
||||
input[type=search]
|
||||
{
|
||||
-webkit-appearance:textfield;
|
||||
}
|
||||
|
||||
input[type=search]::-webkit-search-cancel-button,
|
||||
input[type=search]::-webkit-search-decoration {
|
||||
input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration
|
||||
{
|
||||
-webkit-appearance:none;
|
||||
}
|
||||
|
||||
main {
|
||||
main
|
||||
{
|
||||
display:block;
|
||||
margin:0 auto;
|
||||
padding:0 1.6em 1.6em;
|
||||
padding:0 1.6rem 1.6rem;
|
||||
}
|
||||
|
||||
summary {
|
||||
summary
|
||||
{
|
||||
display:block;
|
||||
}
|
||||
|
||||
pre {
|
||||
pre
|
||||
{
|
||||
background:#efefef;
|
||||
color:#444;
|
||||
display:block;
|
||||
@ -55,24 +62,29 @@ pre {
|
||||
word-wrap:break-word;
|
||||
}
|
||||
|
||||
progress {
|
||||
progress
|
||||
{
|
||||
display:inline-block;
|
||||
}
|
||||
|
||||
small {
|
||||
small
|
||||
{
|
||||
color:#777;
|
||||
font-size:75%;
|
||||
}
|
||||
|
||||
big {
|
||||
big
|
||||
{
|
||||
font-size:125%;
|
||||
}
|
||||
|
||||
template {
|
||||
template
|
||||
{
|
||||
display:none;
|
||||
}
|
||||
|
||||
textarea {
|
||||
textarea
|
||||
{
|
||||
border:.1rem solid #ccc;
|
||||
border-radius:0;
|
||||
display:block;
|
||||
@ -83,59 +95,53 @@ textarea {
|
||||
vertical-align:middle;
|
||||
}
|
||||
|
||||
[hidden] {
|
||||
[hidden]
|
||||
{
|
||||
display:none;
|
||||
}
|
||||
|
||||
[unselectable] {
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
[unselectable]
|
||||
{
|
||||
-webkit-user-select:none;
|
||||
user-select:none;
|
||||
}
|
||||
|
||||
*,
|
||||
::before,
|
||||
::after {
|
||||
*,::before,::after
|
||||
{
|
||||
border-style:solid;
|
||||
border-width:0;
|
||||
box-sizing:inherit;
|
||||
}
|
||||
|
||||
* {
|
||||
*
|
||||
{
|
||||
font-size:inherit;
|
||||
line-height:inherit;
|
||||
margin:0;
|
||||
padding:0;
|
||||
}
|
||||
|
||||
::before,
|
||||
::after {
|
||||
::before,::after
|
||||
{
|
||||
text-decoration:inherit;
|
||||
vertical-align:inherit;
|
||||
}
|
||||
|
||||
a {
|
||||
a
|
||||
{
|
||||
-webkit-transition:.25s ease;
|
||||
color:#1271db;
|
||||
text-decoration:none;
|
||||
-webkit-transition: .25s ease;
|
||||
transition:.25s ease;
|
||||
}
|
||||
|
||||
audio,
|
||||
canvas,
|
||||
iframe,
|
||||
img,
|
||||
svg,
|
||||
video {
|
||||
audio,canvas,iframe,img,svg,video
|
||||
{
|
||||
vertical-align:middle;
|
||||
}
|
||||
|
||||
button,
|
||||
input,
|
||||
select,
|
||||
textarea {
|
||||
button,input,select,textarea
|
||||
{
|
||||
border:.1rem solid #ccc;
|
||||
color:inherit;
|
||||
font-family:inherit;
|
||||
@ -144,58 +150,53 @@ textarea {
|
||||
min-height:1.4em;
|
||||
}
|
||||
|
||||
code,
|
||||
kbd,
|
||||
pre,
|
||||
samp {
|
||||
code,kbd,pre,samp
|
||||
{
|
||||
font-family:Menlo, Monaco, Consolas, 'Courier New', monospace, monospace;
|
||||
}
|
||||
|
||||
table {
|
||||
table
|
||||
{
|
||||
border-collapse:collapse;
|
||||
border-spacing:0;
|
||||
margin-bottom:1.6rem;
|
||||
}
|
||||
|
||||
::-moz-selection {
|
||||
::selection
|
||||
{
|
||||
background-color:#b3d4fc;
|
||||
text-shadow:none;
|
||||
}
|
||||
|
||||
::selection {
|
||||
background-color: #b3d4fc;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
button::-moz-focus-inner {
|
||||
button::-moz-focus-inner
|
||||
{
|
||||
border:0;
|
||||
}
|
||||
|
||||
body {
|
||||
body
|
||||
{
|
||||
color:#444;
|
||||
font-family: 'Open Sans', 'Nimbus Sans L', 'Helvetica Neue', Helvetica, 'Lucida Grande', sans-serif;
|
||||
font-family:var(--default-font-list);
|
||||
font-size:1.6rem;
|
||||
font-style:normal;
|
||||
font-weight:400;
|
||||
padding:0;
|
||||
}
|
||||
|
||||
p {
|
||||
p
|
||||
{
|
||||
margin:0 0 1.6rem;
|
||||
}
|
||||
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: Lato, 'Open Sans', 'Nimbus Sans L', 'Helvetica Neue', Helvetica, 'Lucida Grande', sans-serif;
|
||||
h1,h2,h3,h4,h5,h6
|
||||
{
|
||||
font-family:Lato, var(--default-font-list);
|
||||
margin:2em 0 1.6em;
|
||||
margin:2rem 0 1.6rem;
|
||||
}
|
||||
|
||||
h1 {
|
||||
h1
|
||||
{
|
||||
border-bottom:.1rem solid rgba(0,0,0,0.2);
|
||||
font-size:3.6em;
|
||||
font-size:3.6rem;
|
||||
@ -203,14 +204,16 @@ h1 {
|
||||
font-weight:500;
|
||||
}
|
||||
|
||||
h2 {
|
||||
h2
|
||||
{
|
||||
font-size:3em;
|
||||
font-size:3rem;
|
||||
font-style:normal;
|
||||
font-weight:500;
|
||||
}
|
||||
|
||||
h3 {
|
||||
h3
|
||||
{
|
||||
font-size:2.4em;
|
||||
font-size:2.4rem;
|
||||
font-style:normal;
|
||||
@ -218,7 +221,8 @@ h3 {
|
||||
margin:1.6rem 0 .4rem;
|
||||
}
|
||||
|
||||
h4 {
|
||||
h4
|
||||
{
|
||||
font-size:1.8em;
|
||||
font-size:1.8rem;
|
||||
font-style:normal;
|
||||
@ -226,7 +230,8 @@ h4 {
|
||||
margin:1.6rem 0 .4rem;
|
||||
}
|
||||
|
||||
h5 {
|
||||
h5
|
||||
{
|
||||
font-size:1.6em;
|
||||
font-size:1.6rem;
|
||||
font-style:normal;
|
||||
@ -234,7 +239,8 @@ h5 {
|
||||
margin:1.6rem 0 .4rem;
|
||||
}
|
||||
|
||||
h6 {
|
||||
h6
|
||||
{
|
||||
color:#777;
|
||||
font-size:1.4em;
|
||||
font-size:1.4rem;
|
||||
@ -243,7 +249,8 @@ h6 {
|
||||
margin:1.6rem 0 .4rem;
|
||||
}
|
||||
|
||||
code {
|
||||
code
|
||||
{
|
||||
background:#efefef;
|
||||
color:#444;
|
||||
font-family:Menlo, Monaco, Consolas, 'Courier New', monospace;
|
||||
@ -252,26 +259,29 @@ code {
|
||||
word-wrap:break-word;
|
||||
}
|
||||
|
||||
a:hover,
|
||||
a:focus {
|
||||
a:hover,a:focus
|
||||
{
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
dl {
|
||||
dl
|
||||
{
|
||||
margin-bottom:1.6rem;
|
||||
}
|
||||
|
||||
dd {
|
||||
dd
|
||||
{
|
||||
margin-left:4rem;
|
||||
}
|
||||
|
||||
ul,
|
||||
ol {
|
||||
ul,ol
|
||||
{
|
||||
margin-bottom:.8rem;
|
||||
padding-left:2rem;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
blockquote
|
||||
{
|
||||
border-left:.2rem solid #1271db;
|
||||
font-family:Georgia, Times, 'Times New Roman', serif;
|
||||
font-style:italic;
|
||||
@ -279,29 +289,26 @@ blockquote {
|
||||
padding-left:1.6rem;
|
||||
}
|
||||
|
||||
figcaption {
|
||||
figcaption
|
||||
{
|
||||
font-family:Georgia, Times, 'Times New Roman', serif;
|
||||
}
|
||||
|
||||
html {
|
||||
html
|
||||
{
|
||||
font-size:62.5%;
|
||||
}
|
||||
|
||||
main,
|
||||
header,
|
||||
footer,
|
||||
article,
|
||||
section,
|
||||
aside,
|
||||
details,
|
||||
summary {
|
||||
main,header,footer,article,section,aside,details,summary
|
||||
{
|
||||
display:block;
|
||||
height:auto;
|
||||
margin:0 auto;
|
||||
width:100%;
|
||||
}
|
||||
|
||||
footer {
|
||||
footer
|
||||
{
|
||||
border-top:.1rem solid rgba(0,0,0,0.2);
|
||||
clear:both;
|
||||
display:inline-block;
|
||||
@ -311,34 +318,23 @@ footer {
|
||||
text-align:center;
|
||||
}
|
||||
|
||||
hr {
|
||||
hr
|
||||
{
|
||||
border-top:.1rem solid rgba(0,0,0,0.2);
|
||||
display:block;
|
||||
margin-bottom:1.6rem;
|
||||
width:100%;
|
||||
}
|
||||
|
||||
img {
|
||||
img
|
||||
{
|
||||
height:auto;
|
||||
max-width:100%;
|
||||
vertical-align:baseline;
|
||||
}
|
||||
|
||||
input[type=text],
|
||||
input[type=password],
|
||||
input[type=email],
|
||||
input[type=url],
|
||||
input[type=date],
|
||||
input[type=month],
|
||||
input[type=time],
|
||||
input[type=datetime],
|
||||
input[type=datetime-local],
|
||||
input[type=week],
|
||||
input[type=number],
|
||||
input[type=search],
|
||||
input[type=tel],
|
||||
input[type=color],
|
||||
select {
|
||||
input[type=text],input[type=password],input[type=email],input[type=url],input[type=date],input[type=month],input[type=time],input[type=datetime],input[type=datetime-local],input[type=week],input[type=number],input[type=search],input[type=tel],input[type=color],select
|
||||
{
|
||||
border:.1rem solid #ccc;
|
||||
border-radius:0;
|
||||
display:inline-block;
|
||||
@ -346,7 +342,8 @@ select {
|
||||
vertical-align:middle;
|
||||
}
|
||||
|
||||
input:not([type]) {
|
||||
input:not([type])
|
||||
{
|
||||
-webkit-appearance:none;
|
||||
background-clip:padding-box;
|
||||
background-color:#fff;
|
||||
@ -358,112 +355,88 @@ input:not([type]) {
|
||||
text-align:left;
|
||||
}
|
||||
|
||||
input[type=color] {
|
||||
input[type=color]
|
||||
{
|
||||
padding:.8rem 1.6rem;
|
||||
}
|
||||
|
||||
input[type=text]:focus,
|
||||
input[type=password]:focus,
|
||||
input[type=email]:focus,
|
||||
input[type=url]:focus,
|
||||
input[type=date]:focus,
|
||||
input[type=month]:focus,
|
||||
input[type=time]:focus,
|
||||
input[type=datetime]:focus,
|
||||
input[type=datetime-local]:focus,
|
||||
input[type=week]:focus,
|
||||
input[type=number]:focus,
|
||||
input[type=search]:focus,
|
||||
input[type=tel]:focus,
|
||||
input[type=color]:focus,
|
||||
select:focus,
|
||||
textarea:focus {
|
||||
input[type=text]:focus,input[type=password]:focus,input[type=email]:focus,input[type=url]:focus,input[type=date]:focus,input[type=month]:focus,input[type=time]:focus,input[type=datetime]:focus,input[type=datetime-local]:focus,input[type=week]:focus,input[type=number]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=color]:focus,select:focus,textarea:focus
|
||||
{
|
||||
border-color:#b3d4fc;
|
||||
}
|
||||
|
||||
input:not([type]):focus {
|
||||
input:not([type]):focus
|
||||
{
|
||||
border-color:#b3d4fc;
|
||||
}
|
||||
|
||||
input[type=radio],
|
||||
input[type=checkbox] {
|
||||
input[type=radio],input[type=checkbox]
|
||||
{
|
||||
vertical-align:middle;
|
||||
}
|
||||
|
||||
input[type=file]:focus,
|
||||
input[type=radio]:focus,
|
||||
input[type=checkbox]:focus {
|
||||
input[type=file]:focus,input[type=radio]:focus,input[type=checkbox]:focus
|
||||
{
|
||||
outline:.1rem solid thin #444;
|
||||
}
|
||||
|
||||
input[type=text][disabled],
|
||||
input[type=password][disabled],
|
||||
input[type=email][disabled],
|
||||
input[type=url][disabled],
|
||||
input[type=date][disabled],
|
||||
input[type=month][disabled],
|
||||
input[type=time][disabled],
|
||||
input[type=datetime][disabled],
|
||||
input[type=datetime-local][disabled],
|
||||
input[type=week][disabled],
|
||||
input[type=number][disabled],
|
||||
input[type=search][disabled],
|
||||
input[type=tel][disabled],
|
||||
input[type=color][disabled],
|
||||
select[disabled],
|
||||
textarea[disabled] {
|
||||
input[type=text][disabled],input[type=password][disabled],input[type=email][disabled],input[type=url][disabled],input[type=date][disabled],input[type=month][disabled],input[type=time][disabled],input[type=datetime][disabled],input[type=datetime-local][disabled],input[type=week][disabled],input[type=number][disabled],input[type=search][disabled],input[type=tel][disabled],input[type=color][disabled],select[disabled],textarea[disabled]
|
||||
{
|
||||
background-color:#efefef;
|
||||
color:#777;
|
||||
cursor:not-allowed;
|
||||
}
|
||||
|
||||
input:not([type])[disabled] {
|
||||
input:not([type])[disabled]
|
||||
{
|
||||
background-color:#efefef;
|
||||
color:#777;
|
||||
cursor:not-allowed;
|
||||
}
|
||||
|
||||
input[readonly],
|
||||
select[readonly],
|
||||
textarea[readonly] {
|
||||
input[readonly],select[readonly],textarea[readonly]
|
||||
{
|
||||
background-color:#efefef;
|
||||
border-color:#ccc;
|
||||
color:#777;
|
||||
}
|
||||
|
||||
input:focus:invalid,
|
||||
textarea:focus:invalid,
|
||||
select:focus:invalid {
|
||||
input:focus:invalid,textarea:focus:invalid,select:focus:invalid
|
||||
{
|
||||
border-color:#e9322d;
|
||||
color:#b94a48;
|
||||
}
|
||||
|
||||
input[type=file]:focus:invalid:focus,
|
||||
input[type=radio]:focus:invalid:focus,
|
||||
input[type=checkbox]:focus:invalid:focus {
|
||||
input[type=file]:focus:invalid:focus,input[type=radio]:focus:invalid:focus,input[type=checkbox]:focus:invalid:focus
|
||||
{
|
||||
outline-color:#ff4136;
|
||||
}
|
||||
|
||||
select {
|
||||
select
|
||||
{
|
||||
background-color:#fff;
|
||||
border:.1rem solid #ccc;
|
||||
}
|
||||
|
||||
select[multiple] {
|
||||
select[multiple]
|
||||
{
|
||||
height:auto;
|
||||
}
|
||||
|
||||
label {
|
||||
label
|
||||
{
|
||||
line-height:2;
|
||||
}
|
||||
|
||||
fieldset {
|
||||
fieldset
|
||||
{
|
||||
border:0;
|
||||
margin:0;
|
||||
padding:.8rem 0;
|
||||
}
|
||||
|
||||
legend {
|
||||
legend
|
||||
{
|
||||
border-bottom:.1rem solid #ccc;
|
||||
color:#444;
|
||||
display:block;
|
||||
@ -472,8 +445,8 @@ legend {
|
||||
width:100%;
|
||||
}
|
||||
|
||||
input[type=submit],
|
||||
button {
|
||||
input[type=submit],button
|
||||
{
|
||||
-moz-user-select:none;
|
||||
-ms-user-select:none;
|
||||
-webkit-transition:.25s ease;
|
||||
@ -490,113 +463,117 @@ button {
|
||||
text-align:center;
|
||||
text-decoration:none;
|
||||
text-transform:uppercase;
|
||||
-webkit-transition: .25s ease;
|
||||
transition:.25s ease;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select:none;
|
||||
vertical-align:baseline;
|
||||
}
|
||||
|
||||
input[type=submit] a,
|
||||
button a {
|
||||
input[type=submit] a,button a
|
||||
{
|
||||
color:#444;
|
||||
}
|
||||
|
||||
input[type=submit]::-moz-focus-inner,
|
||||
button::-moz-focus-inner {
|
||||
input[type=submit]::-moz-focus-inner,button::-moz-focus-inner
|
||||
{
|
||||
padding:0;
|
||||
}
|
||||
|
||||
input[type=submit]:hover,
|
||||
button:hover {
|
||||
input[type=submit]:hover,button:hover
|
||||
{
|
||||
background:#444;
|
||||
border-color:#444;
|
||||
color:#fff;
|
||||
}
|
||||
|
||||
input[type=submit]:hover a,
|
||||
button:hover a {
|
||||
input[type=submit]:hover a,button:hover a
|
||||
{
|
||||
color:#fff;
|
||||
}
|
||||
|
||||
input[type=submit]:active,
|
||||
button:active {
|
||||
input[type=submit]:active,button:active
|
||||
{
|
||||
background:#6a6a6a;
|
||||
border-color:#6a6a6a;
|
||||
color:#fff;
|
||||
}
|
||||
|
||||
input[type=submit]:active a,
|
||||
button:active a {
|
||||
input[type=submit]:active a,button:active a
|
||||
{
|
||||
color:#fff;
|
||||
}
|
||||
|
||||
input[type=submit]:disabled,
|
||||
button:disabled {
|
||||
input[type=submit]:disabled,button:disabled
|
||||
{
|
||||
box-shadow:none;
|
||||
cursor:not-allowed;
|
||||
opacity:.40;
|
||||
}
|
||||
|
||||
nav ul {
|
||||
nav ul
|
||||
{
|
||||
list-style:none;
|
||||
margin:0;
|
||||
padding:0;
|
||||
text-align:center;
|
||||
}
|
||||
|
||||
nav ul li {
|
||||
nav ul li
|
||||
{
|
||||
display:inline;
|
||||
}
|
||||
|
||||
nav a {
|
||||
nav a
|
||||
{
|
||||
-webkit-transition:.25s ease;
|
||||
border-bottom:.2rem solid transparent;
|
||||
color:#444;
|
||||
padding:.8rem 1.6rem;
|
||||
text-decoration:none;
|
||||
-webkit-transition: .25s ease;
|
||||
transition:.25s ease;
|
||||
}
|
||||
|
||||
nav a:hover,
|
||||
nav li.selected a {
|
||||
nav a:hover,nav li.selected a
|
||||
{
|
||||
border-color:rgba(0,0,0,0.2);
|
||||
}
|
||||
|
||||
nav a:active {
|
||||
nav a:active
|
||||
{
|
||||
border-color:rgba(0,0,0,0.56);
|
||||
}
|
||||
|
||||
caption {
|
||||
caption
|
||||
{
|
||||
padding:.8rem 0;
|
||||
}
|
||||
|
||||
thead th {
|
||||
thead th
|
||||
{
|
||||
background:#efefef;
|
||||
color:#444;
|
||||
}
|
||||
|
||||
tr {
|
||||
tr
|
||||
{
|
||||
background:#fff;
|
||||
margin-bottom:.8rem;
|
||||
}
|
||||
|
||||
th,
|
||||
td {
|
||||
th,td
|
||||
{
|
||||
border:.1rem solid #ccc;
|
||||
padding:.8rem 1.6rem;
|
||||
text-align:center;
|
||||
vertical-align:inherit;
|
||||
}
|
||||
|
||||
tfoot tr {
|
||||
tfoot tr
|
||||
{
|
||||
background:none;
|
||||
}
|
||||
|
||||
tfoot td {
|
||||
tfoot td
|
||||
{
|
||||
color:#efefef;
|
||||
font-size:.8rem;
|
||||
font-style:italic;
|
||||
@ -604,26 +581,28 @@ tfoot td {
|
||||
}
|
||||
|
||||
@media screen {
|
||||
[hidden~=screen] {
|
||||
[hidden~=screen]
|
||||
{
|
||||
display:inherit;
|
||||
}
|
||||
|
||||
[hidden~=screen]:not(:active):not(:focus):not(:target) {
|
||||
[hidden~=screen]:not(:active):not(:focus):not(:target)
|
||||
{
|
||||
clip:rect(0000)!important;
|
||||
position:absolute!important;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and max-width 40rem {
|
||||
article,
|
||||
section,
|
||||
aside {
|
||||
article,section,aside
|
||||
{
|
||||
clear:both;
|
||||
display:block;
|
||||
max-width:100%;
|
||||
}
|
||||
|
||||
img {
|
||||
img
|
||||
{
|
||||
margin-right:1.6rem;
|
||||
}
|
||||
}
|
@ -1,11 +1,17 @@
|
||||
{
|
||||
"scripts": {
|
||||
"build": "npm-run-all --parallel build:base build:marx",
|
||||
"build:base": "postcss --use autoprefixer --autoprefixer.browsers \"> 5%\" -o css/base.css css/base.myth.css",
|
||||
"build:marx": "postcss --use autoprefixer --autoprefixer.browsers \"> 5%\" -o css/marx.css css/marx.myth.css",
|
||||
"watch": "npm-run-all --parallel watch:base watch:marx",
|
||||
"watch:base": "myth -w css/base.myth.css css/base.css",
|
||||
"watch:marx": "myth -w css/marx.myth.css css/marx.css"
|
||||
"watch:base": "postcss --use autoprefixer --autoprefixer.browsers \"> 5%\" -w -o css/base.css css/base.myth.css",
|
||||
"watch:marx": "postcss --use autoprefixer --autoprefixer.browsers \"> 5%\" -w -o css/marx.css css/marx.myth.css"
|
||||
},
|
||||
"devDependencies": {
|
||||
"myth": "^1.5.0",
|
||||
"npm-run-all": "^1.7.0"
|
||||
"autoprefixer": "^6.6.1",
|
||||
"npm-run-all": "^4.0.0",
|
||||
"postcss-cachify": "^1.3.1",
|
||||
"postcss-cli": "^2.6.0",
|
||||
"postcss-cssnext": "^2.9.0"
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user