site/assets/TiB.css

119 lines
2.0 KiB
CSS
Raw Normal View History

2022-06-04 13:51:41 +00:00
@font-face {
font-family: 'Ubuntu';
src: url('https://tebibyte.media/assets/fonts/ubuntu.ttf');
url('https://tebibyte.media/assets/fonts/ubuntu.woff2');
url('https://tebibyte.media/assets/fonts/ubuntu.woff');
}
::selection {
color: white;
background: red;
}
::-moz-selection {
color: white;
background: red;
}
2022-07-02 10:44:55 +00:00
header {
text-align: center;
2022-07-02 11:06:13 +00:00
padding: 0%;
margin: auto;
2022-07-02 10:44:55 +00:00
}
2022-06-04 13:51:41 +00:00
body {
2022-07-01 10:52:41 +00:00
background-color: black;
2022-06-04 13:51:41 +00:00
font-family: 'Ubuntu';
color: white;
2022-07-02 10:44:55 +00:00
max-width: 50em;
2022-07-02 11:06:13 +00:00
margin: 0% auto;
padding: 0% 5%;
2022-07-02 10:44:55 +00:00
}
p {
2022-06-04 13:51:41 +00:00
text-align: justify;
}
footer {
position:fixed;
bottom: 0;
width: 100%;
}
li.home {
display: inline;
}
li.blog {
display: inline;
}
2022-08-24 07:10:04 +00:00
li.network {
display: inline;
}
2022-06-04 13:51:41 +00:00
li.about {
display: inline;
}
#home nav .home > a {
pointer-events: none;
cursor: default;
text-decoration: none;
}
#blog nav .blog > a {
pointer-events: none;
cursor: default;
2022-08-24 07:10:04 +00:00
text-decoration: none;
}
#network nav .network >a {
pointer-events: none;
cursor: default;
2022-06-04 13:51:41 +00:00
text-decoration: none;
}
#about nav .about > a {
pointer-events: none;
cursor: default;
text-decoration: none;
}
a:link {
color: white;
}
a:visited {
color: white;
}
a:hover {
2022-07-01 10:52:41 +00:00
color: red;
2022-06-04 13:51:41 +00:00
text-decoration: underline;
}
a:active {
2022-07-01 10:52:41 +00:00
color: red;
2022-06-04 13:51:41 +00:00
text-decoration: underline;
}
ul {
list-style-type: disc;
}
/*
2022-08-28 00:36:54 +00:00
* TiB.css is free software: you can redistribute and/or modify it under the
* terms of the GNU Affero General Public License as published by the Free
* Software Foundation, either version 3 of the License, or (at your option) any
* later version.
2022-06-04 13:51:41 +00:00
*
2022-08-28 00:36:54 +00:00
* TiB.css is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
* A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
* details.
2022-06-04 13:51:41 +00:00
*
2022-08-28 00:36:54 +00:00
* You should have received a copy of the GNU General Public License along with
* TiB.css. If not, see <https://www.gnu.org/licenses/agpl-3.0.en.html>.
2022-07-01 10:52:41 +00:00
*/