ntfy/server/static/css/app.css

426 lines
7.4 KiB
CSS
Raw Normal View History

2021-10-24 20:22:53 +02:00
/* general styling */
html, body {
font-family: 'Lato', sans-serif;
color: #333;
font-size: 1.1em;
2021-11-24 02:22:09 +01:00
margin: 0;
padding: 0;
2021-10-24 20:22:53 +02:00
}
2021-11-08 15:24:34 +01:00
html {
/* prevent scrollbar from repositioning website:
* https://www.w3docs.com/snippets/css/how-to-prevent-scrollbar-from-repositioning-web-page.html */
overflow-y: scroll;
}
2021-10-31 04:46:08 +01:00
a, a:visited {
color: #3a9784;
2021-10-24 20:22:53 +02:00
}
a:hover {
text-decoration: none;
2021-10-31 04:46:08 +01:00
color: #317f6f;
2021-10-24 20:22:53 +02:00
}
h1 {
margin-top: 25px;
margin-bottom: 18px;
font-size: 2.5em;
2021-11-24 02:22:09 +01:00
word-wrap: break-word; /* For very long topics */
padding-right: 40px; /* For the X on the detail page */
2021-10-24 20:22:53 +02:00
}
h2 {
2021-11-18 15:22:33 +01:00
margin-top: 30px;
2021-10-24 20:22:53 +02:00
margin-bottom: 5px;
font-size: 1.8em;
}
h3 {
2021-11-18 15:22:33 +01:00
margin-top: 25px;
2021-10-24 20:22:53 +02:00
margin-bottom: 5px;
font-size: 1.3em;
}
p {
margin-top: 10px;
margin-bottom: 20px;
2021-10-24 20:22:53 +02:00
font-size: 1.1em;
line-height: 140%;
2021-10-24 20:22:53 +02:00
}
p.smallMarginBottom {
margin-bottom: 10px;
}
2021-10-24 20:22:53 +02:00
tt {
background: #eee;
padding: 2px 7px;
border-radius: 3px;
}
code {
display: block;
background: #eee;
font-family: monospace;
padding: 20px;
border-radius: 3px;
margin-top: 10px;
margin-bottom: 20px;
2021-11-05 03:47:29 +01:00
overflow-x: auto;
2021-11-27 22:12:08 +01:00
white-space: nowrap;
2021-10-24 20:22:53 +02:00
}
/* Lato font (OFL), https://fonts.google.com/specimen/Lato#about,
embedded with the help of https://google-webfonts-helper.herokuapp.com/fonts/lato?subsets=latin */
@font-face {
font-family: 'Lato';
font-style: normal;
font-weight: 400;
src: local(''),
url('../font/lato-v17-latin-ext_latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
url('../font/lato-v17-latin-ext_latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* Main page */
#main {
max-width: 900px;
margin: 0 auto 50px auto;
2021-11-24 02:22:09 +01:00
padding: 0 10px;
2021-10-24 20:22:53 +02:00
}
#error {
color: darkred;
font-style: italic;
}
#ironicCenterTagDontFreakOut {
color: #666;
}
2021-11-04 15:55:34 +01:00
2021-11-18 02:50:47 +01:00
/* Anchors */
.anchor .anchorLink {
color: #ccc;
text-decoration: none;
padding: 0 5px;
visibility: hidden;
}
.anchor:hover .anchorLink {
visibility: visible;
}
.anchor .anchorLink:hover {
color: #3a9784;
visibility: visible;
}
2021-11-09 16:46:47 +01:00
/* Screenshots */
#screenshots {
text-align: center;
}
#screenshots img {
height: 190px;
margin: 3px;
border-radius: 5px;
filter: drop-shadow(2px 2px 2px #ddd);
}
#screenshots .nowrap {
white-space: nowrap;
}
/* Lightbox; thanks to https://yossiabramov.com/blog/vanilla-js-lightbox */
.lightbox {
opacity: 0;
visibility: hidden;
position: fixed;
left:0;
right: 0;
top: 0;
bottom: 0;
z-index: -1;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.15s ease-in;
}
.lightbox.show {
background-color: rgba(0,0,0, 0.75);
opacity: 1;
visibility: visible;
z-index: 1000;
}
.lightbox img {
max-width: 90%;
max-height: 90%;
filter: drop-shadow(5px 5px 10px #222);
border-radius: 5px;
}
.lightbox .close-lightbox {
cursor: pointer;
position: absolute;
top: 30px;
right: 30px;
width: 20px;
height: 20px;
}
.lightbox .close-lightbox::after,
.lightbox .close-lightbox::before {
content: '';
width: 3px;
height: 20px;
background-color: #ddd;
position: absolute;
border-radius: 5px;
transform: rotate(45deg);
}
.lightbox .close-lightbox::before {
transform: rotate(-45deg);
}
.lightbox .close-lightbox:hover::after,
.lightbox .close-lightbox:hover::before {
background-color: #fff;
}
2021-11-24 02:22:09 +01:00
/* Header */
#header {
background: #3a9784;
height: 130px;
}
#header #headerBox {
max-width: 900px;
margin: 0 auto;
padding: 0 10px;
}
#header img {
margin-top: 23px;
}
2021-11-04 15:55:34 +01:00
/* Subscribe box */
button {
background: #3a9784;
border: none;
border-radius: 3px;
padding: 3px 5px;
color: white;
cursor: pointer;
}
button:hover {
background: #317f6f;
padding: 5px;
}
ul {
padding-left: 1em;
2021-11-08 15:24:34 +01:00
list-style-type: circle;
2021-11-04 15:55:34 +01:00
padding-bottom: 0;
margin: 0;
}
li {
padding: 4px 0;
margin: 4px 0;
font-size: 0.9em;
}
2021-11-05 03:32:17 +01:00
/* Subscribe box SMALL SCREEN */
@media only screen and (max-width: 1599px) {
#subscribeBox #subscribeForm {
border-left: 4px solid #3a9784;
padding: 10px;
}
#subscribeBox #topicsHeader {
margin-bottom: 0;
}
#subscribeBox input {
height: 24px;
min-width: 200px;
max-width: 300px;
border-radius: 3px;
border: none;
border-bottom: 1px solid #aaa;
font-size: 0.8em;
}
#subscribeBox input:focus {
border-bottom: 2px solid #3a9784;
outline: none;
}
#subscribeBox ul {
margin: 0;
}
#subscribeBox li {
margin: 3px 0;
padding: 0;
}
#subscribeBox li img {
width: 15px;
height: 15px;
vertical-align: bottom;
}
2021-11-08 15:24:34 +01:00
#subscribeBox li a {
padding: 0 5px 0 0;
}
2021-11-05 03:32:17 +01:00
#subscribeBox button {
font-size: 0.8em;
background: #3a9784;
border-radius: 3px;
padding: 5px;
color: white;
cursor: pointer;
}
#subscribeBox button:hover {
background: #317f6f;
}
}
/* Subscribe box BIG SCREEN */
2021-11-04 15:55:34 +01:00
@media only screen and (min-width: 1600px) {
#subscribeBox {
position: fixed;
2021-11-05 03:47:29 +01:00
top: 170px;
2021-11-04 15:55:34 +01:00
right: 10px;
width: 300px;
border-left: 4px solid #3a9784;
padding: 10px;
}
#subscribeBox h3 {
margin-top: 0;
margin-bottom: 5px;
font-size: 1.1em;
}
#subscribeBox #topicsHeader {
margin-bottom: 0;
}
#subscribeBox p {
font-size: 0.9em;
margin-bottom: 10px;
}
#subscribeBox ul {
margin: 0;
}
#subscribeBox input {
height: 18px;
border-radius: 3px;
border: none;
border-bottom: 1px solid #aaa;
}
#subscribeBox input:focus {
border-bottom: 2px solid #3a9784;
outline: none;
}
#subscribeBox li {
margin: 3px 0;
padding: 0;
}
#subscribeBox li img {
width: 15px;
height: 15px;
vertical-align: bottom;
}
2021-11-08 15:24:34 +01:00
#subscribeBox li a {
padding: 0 5px 0 0;
}
2021-11-04 15:55:34 +01:00
#subscribeBox button {
font-size: 0.7em;
background: #3a9784;
border-radius: 3px;
2021-11-05 03:32:17 +01:00
padding: 5px;
2021-11-04 15:55:34 +01:00
color: white;
cursor: pointer;
}
#subscribeBox button:hover {
background: #317f6f;
}
2021-11-08 15:24:34 +01:00
}
/** Detail view */
#detail {
display: none;
}
#detail .detailDate {
color: #888;
font-size: 0.9em;
}
#detail .detailMessage {
margin-bottom: 20px;
font-size: 1.1em;
}
2021-11-04 15:55:34 +01:00
2021-11-08 15:24:34 +01:00
#detail #detailMain {
max-width: 900px;
margin: 0 auto;
2021-11-08 15:24:34 +01:00
position: relative; /* required for close button's "position: absolute" */
2021-11-24 02:22:09 +01:00
padding: 0 10px 50px 10px; /* Chrome and Firefox behave differently regarding bottom margin */
2021-11-08 15:24:34 +01:00
}
#detail #detailCloseButton {
background: #eee;
border-radius: 5px;
border: none;
padding: 5px;
position: absolute;
2021-11-24 02:22:09 +01:00
right: 10px;
2021-11-08 15:24:34 +01:00
top: 10px;
display: block;
}
#detail #detailCloseButton:hover {
padding: 5px;
background: #ccc;
2021-11-04 15:55:34 +01:00
}
2021-11-08 15:24:34 +01:00
#detail #detailCloseButton img {
display: block; /* get rid of the weird bottom border */
}
2021-11-04 15:55:34 +01:00
2021-11-08 15:24:34 +01:00
#detail #detailNotificationsDisallowed {
display: none;
color: darkred;
}
#detail #events {
max-width: 900px;
margin: 0 auto 50px auto;
}