This repository has been archived on 2024-08-27. You can view files and clone it, but cannot push or open issues or pull requests.
negromate_origins/web/negromateweb/static/css/main.css

118 lines
1.6 KiB
CSS
Raw Normal View History

2018-10-12 23:00:20 +02:00
body {
display: flex;
flex-wrap: wrap;
background-color: #232323;
color: #aaa;
font-family: "CyrBit";
font-size: 20pt;
}
a {
color: #aaa;
text-decoration: none;
}
header#header {
width:100%;
display: inline-block;
}
footer {
font-size: smaller;
2018-12-11 22:29:16 +01:00
width: 100%;
}
2019-12-07 12:24:28 +01:00
table {
width: 100%;
border: 1px solid white;
border-collapse: collapse;
}
table td, table th {
border: 1px solid white;
}
2018-10-12 23:00:20 +02:00
#menu {
display: inline-block;
flex: 1 10em;
}
#menu ul {
list-style-type: none;
padding: 0;
border: 1px solid gray;
border-radius: 0.5em;
}
#menu ul li {
border-bottom: 1px solid gray;
padding: 0.5em 1em;
}
2018-12-11 22:29:16 +01:00
#libreto, #playlist, #onion {
2018-10-12 23:00:20 +02:00
border: 1px solid #aaa;
border-radius: 0.5em;
text-align: center;
}
#libreto img {
width: 200px;
margin-left: auto;
margin-right: auto;
display: block;
}
#content {
display: inline-block;
margin-left: 1em;
flex: 10;
}
.songs {
2018-10-12 23:00:20 +02:00
display: flex;
flex-wrap: wrap;
}
.songs figure {
flex: 0;
2018-10-12 23:00:20 +02:00
border: 1px solid gray;
text-align: center;
padding: 0.5em;
border-radius: 0.5em;
}
.songs figure figcaption {
2018-10-12 23:00:20 +02:00
font-weight: bold;
}
video {
width: 100%;
}
.lyrics {
line-height: 1.2em;
}
#song-playlist #video-playlist {
width: 100%;
}
.vjs-mouse.vjs-playlist {
font-size: 15pt;
}
.vjs-mouse.vjs-playlist .vjs-playlist-item-list {
display: flex;
flex-wrap: wrap;
}
.vjs-playlist .vjs-playlist-item {
flex: 0 200px;
}
2019-09-03 13:04:17 +02:00
.video-js .vjs-big-play-button {
top: 50%;
left: 50%;
}