Remove bootstrap styles from float.html

This commit is contained in:
toasted-nutbread 2019-10-12 16:27:49 -04:00
parent 696ea80e06
commit ceaeeb32dd
3 changed files with 41 additions and 11 deletions

View File

@ -1,5 +1,5 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en" class="yomichan-search">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1" /> <meta name="viewport" content="width=device-width,initial-scale=1" />

View File

@ -1,18 +1,10 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en" class="yomichan-float">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1" /> <meta name="viewport" content="width=device-width,initial-scale=1" />
<title></title> <title></title>
<link rel="stylesheet" href="/mixed/lib/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="/mixed/lib/bootstrap/css/bootstrap-theme.min.css">
<link rel="stylesheet" href="/mixed/css/display.css"> <link rel="stylesheet" href="/mixed/css/display.css">
<style type="text/css">
.entry, .note {
padding-left: 10px;
padding-right: 10px;
}
</style>
</head> </head>
<body> <body>
<div id="spinner"> <div id="spinner">

View File

@ -30,9 +30,27 @@
* General * General
*/ */
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
line-height: 1.42857143;
color: #333;
background-color: #fff;
margin: 0;
border: 0;
padding: 0;
}
hr { hr {
padding: 0px; padding: 0px;
margin: 0px; margin: 0px;
border: 0;
border-top: 1px solid #eee;
}
ol, ul {
margin-top: 0;
margin-bottom: 10px;
} }
#spinner { #spinner {
@ -60,6 +78,12 @@ hr {
padding-bottom: 10px; padding-bottom: 10px;
} }
html:root.yomichan-float .entry,
html:root.yomichan-float .note {
padding-left: 10px;
padding-right: 10px;
}
.tag-default { .tag-default {
background-color: #8a8a91; background-color: #8a8a91;
} }
@ -103,6 +127,7 @@ hr {
.actions .disabled img { .actions .disabled img {
-webkit-filter: grayscale(100%); -webkit-filter: grayscale(100%);
filter: grayscale(100%);
opacity: 0.25; opacity: 0.25;
} }
@ -111,7 +136,7 @@ hr {
} }
.actions { .actions {
display: inline-block; display: block;
float: right; float: right;
} }
@ -234,3 +259,16 @@ div.glossary-item.compact-glossary {
.entry:not(.entry-current) .current { .entry:not(.entry-current) .current {
display: none; display: none;
} }
.label {
display: inline;
padding: 0.2em 0.6em 0.3em;
font-size: 75%;
font-weight: 700;
line-height: 1;
color: #fff;
text-align: center;
white-space: nowrap;
vertical-align: baseline;
border-radius: 0.25em;
}