Compare commits

..

No commits in common. "eac996e3fb1199a9d68531ba4df58b4fe094e110" and "2dfe4bfec0114e7efb3f2b9fe5e7153bafb48b1e" have entirely different histories.

12 changed files with 23 additions and 10 deletions

File diff suppressed because one or more lines are too long

View File

@ -24,6 +24,7 @@
position:fixed; position:fixed;
background:#000; background:#000;
opacity:.8; opacity:.8;
filter:alpha(opacity=80);
} }
.mfp-wrap { .mfp-wrap {
top:0; top:0;
@ -33,7 +34,7 @@
z-index:1043; z-index:1043;
position:fixed; position:fixed;
outline:none !important; outline:none !important;
backface-visibility:hidden -webkit-backface-visibility:hidden
} }
.mfp-container { .mfp-container {
text-align:center; text-align:center;
@ -152,6 +153,7 @@ button::-moz-focus-inner {
text-decoration:none; text-decoration:none;
text-align:center; text-align:center;
opacity:1; opacity:1;
filter:alpha(opacity=100);
padding:0 0 18px 10px; padding:0 0 18px 10px;
color:#fff; color:#fff;
font-style:normal; font-style:normal;
@ -161,6 +163,7 @@ button::-moz-focus-inner {
.mfp-close:hover, .mfp-close:hover,
.mfp-close:focus { .mfp-close:focus {
opacity:1; opacity:1;
filter:alpha(opacity=100);
} }
.mfp-close:active { .mfp-close:active {
top:1px top:1px
@ -187,6 +190,7 @@ button::-moz-focus-inner {
.mfp-arrow { .mfp-arrow {
position:absolute; position:absolute;
opacity:1; opacity:1;
filter:alpha(opacity=100);
margin:0; margin:0;
top:50%; top:50%;
margin-top:-55px; margin-top:-55px;
@ -201,6 +205,7 @@ button::-moz-focus-inner {
.mfp-arrow:hover, .mfp-arrow:hover,
.mfp-arrow:focus { .mfp-arrow:focus {
opacity:1; opacity:1;
filter:alpha(opacity=100);
} }
.mfp-arrow:before, .mfp-arrow:before,
.mfp-arrow:after, .mfp-arrow:after,
@ -489,6 +494,8 @@ audio,
canvas, canvas,
video { video {
display:inline-block; display:inline-block;
*display:inline;
*zoom:1
} }
audio:not([controls]) { audio:not([controls]) {
display:none display:none
@ -535,6 +542,7 @@ textarea {
} }
button, button,
input { input {
*overflow:visible;
line-height:normal line-height:normal
} }
button::-moz-focus-inner, button::-moz-focus-inner,
@ -546,7 +554,7 @@ button,
html input[type="button"], html input[type="button"],
input[type="reset"], input[type="reset"],
input[type="submit"] { input[type="submit"] {
appearance:button; -webkit-appearance:button;
cursor:pointer cursor:pointer
} }
label, label,
@ -836,6 +844,7 @@ form legend {
display:block; display:block;
width:100%; width:100%;
margin-bottom:10px; margin-bottom:10px;
*margin-left:-7px;
padding:0; padding:0;
color:#eaeaea; color:#eaeaea;
border:0; border:0;
@ -858,6 +867,7 @@ button,
select, select,
textarea { textarea {
vertical-align:baseline; vertical-align:baseline;
*vertical-align:middle
} }
input, input,
button, button,
@ -906,6 +916,7 @@ input[type="radio"] {
height:auto; height:auto;
padding:0; padding:0;
margin:3px 0; margin:3px 0;
*margin-top:0;
line-height:normal; line-height:normal;
cursor:pointer; cursor:pointer;
border-radius:0; border-radius:0;
@ -916,6 +927,8 @@ input[type="checkbox"],
input[type="radio"] { input[type="radio"] {
box-sizing:border-box; box-sizing:border-box;
padding:0; padding:0;
*width:13px;
*height:13px
} }
input[type="image"] { input[type="image"] {
border:0 border:0
@ -935,8 +948,12 @@ input[type="submit"] {
width:auto; width:auto;
height:auto; height:auto;
cursor:pointer; cursor:pointer;
*overflow:visible
} }
select, select,
input[type="file"] {
*margin-top:4px
}
select { select {
width:auto; width:auto;
background-color:#fff background-color:#fff
@ -1289,6 +1306,7 @@ th {
pointer-events:none; pointer-events:none;
cursor:not-allowed; cursor:not-allowed;
opacity:0.65; opacity:0.65;
filter:alpha(opacity=65);
box-shadow:none; box-shadow:none;
} }
.btn--x-large { .btn--x-large {
@ -3359,6 +3377,7 @@ body {
.page__comments-form.disabled label { .page__comments-form.disabled label {
pointer-events:none; pointer-events:none;
cursor:not-allowed; cursor:not-allowed;
filter:alpha(opacity=65);
box-shadow:none; box-shadow:none;
opacity:0.65 opacity:0.65
} }

File diff suppressed because one or more lines are too long

View File

@ -16,12 +16,6 @@
<link rel="stylesheet" href="../_assets/dist/reveal.css"> <link rel="stylesheet" href="../_assets/dist/reveal.css">
<link rel="stylesheet" href="../_assets/dist/theme/night.css"> <link rel="stylesheet" href="../_assets/dist/theme/night.css">
<link rel="apple-touch-icon" sizes="180x180" href="./_assets/images/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./_assets/images/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./_assets/images/favicon/favicon-16x16.png">
<link rel="manifest" href="./_assets/images/favicon/site.webmanifest">
<link rel="mask-icon" href="./_assets/images/favicon/safari-pinned-tab.svg" color="#5bbad5">
<!-- Theme used for syntax highlighted code --> <!-- Theme used for syntax highlighted code -->
<link rel="stylesheet" href="../_assets/../_assets/plugin/highlight/monokai.css"> <link rel="stylesheet" href="../_assets/../_assets/plugin/highlight/monokai.css">
</head> </head>