Files
TorrentParts/style.css
2020-11-13 12:05:16 -05:00

391 lines
9.8 KiB
CSS

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}
.sr-only {
border: 0;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
}
:root {
--gradient: linear-gradient(180deg, #152332, #24384D);
--dark-blue: #102030;
--light-blue: #495563;
--accent: #46835C;
--accent-alt: #A60A0A;
--grey: #BDBDBD;
--white: #FFF;
background: #24384D;
overflow-y: scroll;
scrollbar-width: none;
-ms-overflow-style: none;
overflow-x: hidden;
}
:root:-webkit-scrollbar {
display: none;
}
body {
color: var(--white);
background: var(--gradient);
font-family: 'Alata', sans-serif;
height: 100vh;
width: 100vw;
overflow-y: scroll;
scrollbar-width: none;
-ms-overflow-style: none;
overflow-x: hidden;
}
body:-webkit-scrollbar {
display: none;
}
input {
color: var(--white);
background: var(--dark-blue);
border: 1px solid var(--light-blue);
padding: 8px;
box-sizing: border-box;
border-radius: 900px;
text-overflow: ellipsis;
}
input:focus {
background: var(--light-blue);
border: 1px solid var(--grey);
transition: ease .2s;
outline: none;
}
input:disabled {
color: var(--grey);
background: transparent;
border: 0;
padding: 8px 0;
}
::placeholder {
color: var(--grey);
opacity: 0.6;
}
button {
color: var(--white);
background: var(--accent);
border: 0;
padding: 8px;
box-sizing: border-box;
border-radius: 900px;
text-align: left;
cursor: pointer;
}
button:disabled {
filter: brightness(0.6);
cursor: not-allowed;
}
a {
color: var(--grey);
text-decoration: underline;
text-transform: uppercase;
cursor: pointer;
}
.disabled {
text-decoration: none;
cursor: not-allowed;
}
header {
width: 100%;
height: 80px;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 1px solid var(--grey);
}
header > * {
margin: 0 24px;
}
footer {
position: absolute;
bottom: 4px;
right: 4px;
}
footer > a {
color: var(--grey);
opacity: 0.6;
font-size: 10px;
text-transform: none;
text-decoration: none;
}
#startButtons {
height: 80px;
max-width: 960px;
margin: 64px auto;
display: flex;
align-items: center;
justify-content: space-evenly;
}
#startButtons > * {
width: 440px;
height: 40px;
line-height: 22px;
}
#magnet {
text-align: center;
}
#torrent {
display: none;
}
label[for="torrent"] {
color: var(--white);
background: var(--accent);
border: 0;
padding: 8px;
box-sizing: border-box;
border-radius: 900px;
text-align: center;
text-transform: none;
cursor: pointer;
}
#properties {
position: relative;
max-width: 960px;
background: var(--dark-blue);
box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.3);
margin: 80px auto;
padding: 40px;
border-radius: 30px;
flex-direction: column;
justify-content: space-evenly;
}
#reset {
width: 32px;
height: 32px;
border-radius: 50%;
text-align: center;
line-height: 50%;
position: absolute;
top: -12px;
right: -12px;
}
#share {
position: absolute;
top: 0;
left: -28px;
display: flex;
flex-direction: column;
}
#share > div > button {
width: 64px;
height: 64px;
border-radius: 50%;
text-align: center;
line-height: 50%;
margin: 4px 0;
}
.property {
margin: 24px 0;
display: flex;
align-content: flex-start;
justify-content: space-between;
}
.property:first-child {
width: 240px;
}
.labels {
width: 280px;
text-align: right;
margin-top: 8px;
display: flex;
flex-direction: column;
}
.labels > a {
font-size: 80%;
margin-top: 6px;
}
.content, #files {
width: 460px;
}
.info {
color: var(--grey);
}
label {
text-transform: uppercase;
}
input {
width: 440px;
height: 40px;
}
#addTracker, #addWebseed {
width: 440px;
height: 40px;
margin: 0 0 16px 0;
color: var(--grey);
opacity: 0.6;
background: var(--dark-blue);
border: 1px solid var(--light-blue);
box-sizing: border-box;
border-radius: 900px;
cursor: pointer;
}
#announce > *, #urlList > * {
margin: 0 0 16px 0;
}
.remove {
margin-left: 6px;
}
@media (max-width: 1080px) {
#reset {
top: 0px;
right: 8px;
}
#share {
justify-content: center;
width: 95%;
top: auto;
bottom: 16px;
left: auto;
right: auto;
flex-direction: row;
}
#share > * {
margin: 0 4px;
}
#properties {
padding-bottom: 80px !important;
}
}
@media (max-width: 900px) {
#startButtons {
flex-direction: column;
justify-content: space-between;
height: 90px;
}
#properties {
margin: 0 0 32px 0;
padding: 0 1.5vw;
}
.property {
margin: 12px 0;
flex-direction: column;
}
.property > label {
margin: 12px 0;
}
input, button {
width: 80vw;
text-align: center;
}
.labels {
margin-bottom: 16px;
align-items: center;
}
.labels, .content, #files {
width: auto;
display: flex;
flex-direction: column;
align-items: center;
}
#announce, #urlList {
text-align: center;
}
#announce > * > *, #urlList > * > *, #addTracker, #addWebseed {
width: 80vw;
}
#addTracker, #addWebseed {
margin-right: 22px !important;
}
}
@media (max-width: 460px) {
#startButtons > *, .property > input {
width: 95%;
}
}
/*! Tippy 6.2.7 | MIT License | github.com/atomiks/tippyjs */
.tippy-box[data-animation=fade][data-state=hidden]{opacity:0}[data-tippy-root]{max-width:calc(100vw - 10px)}.tippy-box{position:relative;background-color:#333;color:#fff;border-radius:4px;font-size:14px;line-height:1.4;outline:0;transition-property:transform,visibility,opacity}.tippy-box[data-placement^=top]>.tippy-arrow{bottom:0}.tippy-box[data-placement^=top]>.tippy-arrow:before{bottom:-7px;left:0;border-width:8px 8px 0;border-top-color:initial;transform-origin:center top}.tippy-box[data-placement^=bottom]>.tippy-arrow{top:0}.tippy-box[data-placement^=bottom]>.tippy-arrow:before{top:-7px;left:0;border-width:0 8px 8px;border-bottom-color:initial;transform-origin:center bottom}.tippy-box[data-placement^=left]>.tippy-arrow{right:0}.tippy-box[data-placement^=left]>.tippy-arrow:before{border-width:8px 0 8px 8px;border-left-color:initial;right:-7px;transform-origin:center left}.tippy-box[data-placement^=right]>.tippy-arrow{left:0}.tippy-box[data-placement^=right]>.tippy-arrow:before{left:-7px;border-width:8px 8px 8px 0;border-right-color:initial;transform-origin:center right}.tippy-box[data-inertia][data-state=visible]{transition-timing-function:cubic-bezier(.54,1.5,.38,1.11)}.tippy-arrow{width:16px;height:16px;color:#333}.tippy-arrow:before{content:"";position:absolute;border-color:transparent;border-style:solid}.tippy-content{position:relative;padding:5px 9px;z-index:1}
/* Tippy shift-away-subtle theme */
.tippy-box[data-animation=shift-away-subtle][data-state=hidden]{opacity:0}.tippy-box[data-animation=shift-away-subtle][data-state=hidden][data-placement^=top]{transform:translateY(5px)}.tippy-box[data-animation=shift-away-subtle][data-state=hidden][data-placement^=bottom]{transform:translateY(-5px)}.tippy-box[data-animation=shift-away-subtle][data-state=hidden][data-placement^=left]{transform:translateX(5px)}.tippy-box[data-animation=shift-away-subtle][data-state=hidden][data-placement^=right]{transform:translateX(-5px)}
/* Custom Tippy Theme */
.tippy-box[data-theme~="torrent-parts"] {
background-color: var(--accent);
font-weight: 600;
text-align: center;
}
.tippy-box[data-theme~="torrent-parts"][data-placement^="top"] > .tippy-arrow:before {
border-top-color: var(--accent);
}
.tippy-box[data-theme~="torrent-parts"][data-placement^="bottom"] > .tippy-arrow:before {
border-bottom-color: var(--accent);
}
.tippy-box[data-theme~="torrent-parts"][data-placement^="left"] > .tippy-arrow:before {
border-left-color: var(--accent);
}
.tippy-box[data-theme~="torrent-parts"][data-placement^="right"] > .tippy-arrow:before {
border-right-color: var(--accent);
}
.tippy-box[data-theme~="torrent-parts"] > .tippy-backdrop {
background-color: var(--accent);
}
.tippy-box[data-theme~="torrent-parts"] > .tippy-svg-arrow {
fill: var(--accent);
}
/*! Fix Notyf dismiss button */
.notyf__dismiss-btn{border-radius: 0;}