Split CSS
This commit is contained in:
parent
1dcdbed8af
commit
f66227d9f0
2 changed files with 85 additions and 89 deletions
84
static/popup/fanzine.css
Normal file
84
static/popup/fanzine.css
Normal file
|
@ -0,0 +1,84 @@
|
||||||
|
:root {
|
||||||
|
--main-color: #1eb35a;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Generic parameters */
|
||||||
|
* {
|
||||||
|
font-family: Helvetica, Verdana, Arial, sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
min-width: 300px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Navigation logic */
|
||||||
|
section {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
section:target {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Components definition */
|
||||||
|
a {
|
||||||
|
text-decoration: none;
|
||||||
|
color: #111;
|
||||||
|
border-radius: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover {
|
||||||
|
background-color: #ddd;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.primary {
|
||||||
|
padding: 0.2rem 0.5rem 0.4rem 0.5rem;
|
||||||
|
display: block;
|
||||||
|
text-align: center;
|
||||||
|
color: #fff;
|
||||||
|
background-color: var(--main-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
textarea {
|
||||||
|
font-family: monospace;
|
||||||
|
margin: 1rem 0rem;
|
||||||
|
resize: none;
|
||||||
|
box-sizing: border-box;
|
||||||
|
width: 100%;
|
||||||
|
height: 300px;
|
||||||
|
padding: 0.5rem;
|
||||||
|
line-height: 1.5;
|
||||||
|
border-radius: 5px;
|
||||||
|
border: 1px solid #ccc;
|
||||||
|
/*box-shadow: 1px 1px 1px #999;*/
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Menu interface */
|
||||||
|
.menu-elem, .menu-title {
|
||||||
|
display: block;
|
||||||
|
padding: 0.2rem 0.5rem 0.4rem 0.5rem;
|
||||||
|
margin: 0.3rem;
|
||||||
|
user-select: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.menu-title {
|
||||||
|
font-weight: bold;
|
||||||
|
border-bottom: 2px solid var(--main-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
.menu-title > a {
|
||||||
|
padding: 0.2rem 0.5rem 0.4rem 0.5rem;
|
||||||
|
margin: 0.3rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.menu-elem:after {
|
||||||
|
content: ">";
|
||||||
|
text-align: right;
|
||||||
|
float:right;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
hr {
|
||||||
|
border: none;
|
||||||
|
border-bottom: 1px solid #ccc;
|
||||||
|
}
|
||||||
|
|
|
@ -2,93 +2,7 @@
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<style>
|
<link href="fanzine.css" rel="stylesheet">
|
||||||
:root {
|
|
||||||
--main-color: #1eb35a;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/* Generic parameters */
|
|
||||||
* {
|
|
||||||
font-family: Helvetica, Verdana, Arial, sans-serif;
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
min-width: 300px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Navigation logic */
|
|
||||||
section {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
section:target {
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Components definition */
|
|
||||||
a {
|
|
||||||
text-decoration: none;
|
|
||||||
color: #111;
|
|
||||||
border-radius: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
a:hover {
|
|
||||||
background-color: #ddd;
|
|
||||||
}
|
|
||||||
|
|
||||||
a.primary {
|
|
||||||
padding: 0.2rem 0.5rem 0.4rem 0.5rem;
|
|
||||||
display: block;
|
|
||||||
text-align: center;
|
|
||||||
color: #fff;
|
|
||||||
background-color: var(--main-color);
|
|
||||||
}
|
|
||||||
|
|
||||||
textarea {
|
|
||||||
font-family: monospace;
|
|
||||||
margin: 1rem 0rem;
|
|
||||||
resize: none;
|
|
||||||
box-sizing: border-box;
|
|
||||||
width: 100%;
|
|
||||||
height: 300px;
|
|
||||||
padding: 0.5rem;
|
|
||||||
line-height: 1.5;
|
|
||||||
border-radius: 5px;
|
|
||||||
border: 1px solid #ccc;
|
|
||||||
/*box-shadow: 1px 1px 1px #999;*/
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Menu interface */
|
|
||||||
.menu-elem, .menu-title {
|
|
||||||
display: block;
|
|
||||||
padding: 0.2rem 0.5rem 0.4rem 0.5rem;
|
|
||||||
margin: 0.3rem;
|
|
||||||
user-select: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.menu-title {
|
|
||||||
font-weight: bold;
|
|
||||||
border-bottom: 2px solid var(--main-color);
|
|
||||||
}
|
|
||||||
|
|
||||||
.menu-title > a {
|
|
||||||
padding: 0.2rem 0.5rem 0.4rem 0.5rem;
|
|
||||||
margin: 0.3rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.menu-elem:after {
|
|
||||||
content: ">";
|
|
||||||
text-align: right;
|
|
||||||
float:right;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
hr {
|
|
||||||
border: none;
|
|
||||||
border-bottom: 1px solid #ccc;
|
|
||||||
}
|
|
||||||
|
|
||||||
</style>
|
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
|
@ -119,8 +33,6 @@ hr {
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<script src="aws-sdk.js"></script>
|
|
||||||
<script src="config.js"></script>
|
|
||||||
<script src="fanzine.js"></script>
|
<script src="fanzine.js"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Reference in a new issue