mirror of
https://tildegit.org/sbgodin/HtmGem.git
synced 2023-08-25 13:53:12 +02:00
Christophe HENRY
678778ba2c
* Creates a default directory for the default css. * Changes the way to address CSS: "," used as "/" (see htmgem/css/index.gmi). * "src" style replaces the "pre": display the source code onscreen. * Removes the "None" style, useless after all. * Removes the absolute stylesheet path, now always in /htmgem/css.
83 lines
1013 B
CSS
83 lines
1013 B
CSS
@import "base.css";
|
|
|
|
html {
|
|
color:#1E4147;
|
|
background-color:#fafafa;
|
|
}
|
|
|
|
|
|
h1, h2, h3 {
|
|
color: #66f;
|
|
}
|
|
|
|
blockquote {
|
|
background-color: #eee;
|
|
border-left: 3px solid #444;
|
|
margin: 1rem -1rem 1rem calc(-1rem - 3px);
|
|
padding: 1rem;
|
|
}
|
|
|
|
.menu a, .menu a:visited {
|
|
color: #888;
|
|
}
|
|
|
|
.menu a:hover {
|
|
color: #000;
|
|
}
|
|
|
|
.menu hr {
|
|
color: white;
|
|
}
|
|
|
|
#gmi a {
|
|
margin: -0.7rem;
|
|
color:#820;
|
|
}
|
|
|
|
#gmi a:before {
|
|
content: "🔗 ";
|
|
}
|
|
|
|
#gmi a:visited {
|
|
color: #868;
|
|
}
|
|
|
|
#gmi a.local:before {
|
|
content: "🛩️ ";
|
|
font-weight: bold;
|
|
}
|
|
|
|
#gmi a.gemini:before {
|
|
content: "🚀 ";
|
|
}
|
|
|
|
#gmi a.gopher:before {
|
|
content: "📜 ";
|
|
}
|
|
|
|
#gmi a.https:before {
|
|
content: "🕸️ ";
|
|
font-weight: bolder;
|
|
}
|
|
|
|
#gmi a.http:before {
|
|
content: "🕸️ ";
|
|
font-weight: lighter;
|
|
}
|
|
|
|
#gmi a.mumble:before {
|
|
content: "🎤 ";
|
|
}
|
|
|
|
#gmi a.mailto:before {
|
|
content: "✉️ ";
|
|
}
|
|
|
|
@media only screen and (max-width: 1024px) {
|
|
|
|
#gmi a {
|
|
margin: -2.9rem;
|
|
}
|
|
}
|
|
|