1
0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-08-04 23:57:29 +02:00

Improved new style.

This commit is contained in:
Teromene
2016-08-02 22:16:43 +02:00
parent d3d379bd81
commit 6b7b38db54
3 changed files with 74 additions and 5 deletions

View File

@@ -58,6 +58,20 @@ section {
}
section:last-of-type {
opacity: 0.5;
}
section:last-of-type:hover {
opacity: 1;
}
section > h2 {
font-size: 200%;
@@ -90,6 +104,13 @@ button {
}
button.small {
width: auto;
line-height: 1.2em;
}
.description {
margin: 10px;
@@ -128,3 +149,47 @@ input[type="text"] {
padding-left: 4px;
}
form {
display: none;
}
h5 {
display: none;
}
.showmore-box {
display: none;
}
.showmore, .showless {
color: #888888;
}
.showmore-box:checked ~ .showmore {
display: none;
}
.showmore-box:not(:checked) ~ .showless {
display: none;
}
.showmore-box:checked ~ form, .showmore-box:checked ~ h5 {
display: block;
}