netflix2/style/style.css
2022-02-19 01:24:33 +01:00

212 lines
2.9 KiB
CSS

.hidden {
display: none;
}
.container {
position: relative;
text-align: center;
color: white;
}
.centered {
display: none;
position: absolute;
bottom: 20px;
left: 50%;
transform: translate(-50%, -50%);
}
.container:hover > .centered {
display: block;
background-color:rgba(37, 34, 34, 0.6);
}
.thumbnail {
width: 150px;
}
.nosaga.button {
width: 150px;
}
#movieDetails {
display: flex;
}
#cover {
margin-left: 20px;
//background-color: green;
}
#spec {
margin-left: 30px;
width: 60%;
//background-color: red;
}
#selection {
display: flex;
}
#AV {
margin-left: 20px;
//background-color: green;
}
#subtitle_list {
margin-left: 30px;
width: 60%;
//background-color: red;
}
a.button {
background-color: #222426;
cursor: pointer;
//border: 2px solid;
border-radius: 5px;
font-weight: bold;
margin: 5px;
color: #10a2ff;
text-decoration: none;
box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 16px 0px, rgba(0, 0, 0, 0.19) 0px 6px 20px 0px;
}
a.button:hover {
box-shadow: 0 0 6px rgb(35 173 255);
}
a.button.box {
display: inline-block;
text-align: center;
padding: 1em 1.5em;
width: 150px;
height: 229px;
vertical-align: top;
}
a.button.line {
display: block;
padding: 5px;
display: flex;
align-items: center;
justify-content: flex-start;
}
a.line > .title {
margin-left: 200px;
width: 600px;
font-size: 20px;
}
a.line > .original_title {
margin-left: 100px;
font-size: 20px;
}
a.line > img {
margin-left: 50px;
width: 50px;
}
.toggle {
cursor: pointer;
font-size: 16px;
font-weight: 700;
display: inline-block;
border-bottom: 2px solid;
}
.fa {
transition: transform .2s;
}
.fa-chevron-right.active {
transform: rotateZ(90deg);
}
.fa-chevron-down.active {
transform: rotateZ(-90deg);
}
.fa-clipboard-list {
cursor: pointer;
}
.overview {
border: 1px solid;
display: inline-block;
margin: 5px 0;
margin-left: 5px;
padding: 3px;
}
input:checked + label {
font-weight: bold;
}
input[type="checkbox"] {
position: absolute;
left: -9999px;
}
label:hover, input:focus + label {
cursor: pointer;
box-shadow: 0 0 20px rgba(0, 0, 0, .6);
}
body {
margin: 0;
background-color: #181A1B;
filter: brightness(1);
filter: contrast(1);
}
.navbar {
overflow: hidden;
background-color: #262A2B;
position: sticky;
top: 0;
left: 0;
z-index: 999;
padding: 5px 60px;
display: flex;
align-items: center;
justify-content: space-between;
}
.navbar > * {
font-size: 17px;
}
.navbar > a,
.navbar > i {
margin: 0 6px;
padding: 8px 8px;
text-decoration: none;
color: #f2f2f2;
cursor: pointer;
}
.navbar > input[type=text] {
margin-left: auto;
margin-right: 20px;
}
.navbar > a:hover,
.navbar > i:hover {
background: #ddd;
color: black;
}
.main {
padding: 0;
margin: 16px;
color: #E8E6E3;
}