mirror of
https://github.com/leoherzog/TorrentParts.git
synced 2026-01-24 04:08:04 -08:00
Beginning Stages of Design Implementation
This commit is contained in:
126
style.css
Normal file
126
style.css
Normal file
@@ -0,0 +1,126 @@
|
||||
/*! 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}
|
||||
|
||||
:root {
|
||||
--gradient: linear-gradient(180deg, #152332, #24384D);
|
||||
--dark-blue: #102030;
|
||||
--light-blue: #495563;
|
||||
--accent: #63A079;
|
||||
--grey: #BDBDBD;
|
||||
--white: #FFF;
|
||||
}
|
||||
|
||||
body {
|
||||
color: var(--white);
|
||||
background: var(--gradient);
|
||||
font-family: 'Alata', sans-serif;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
::placeholder {
|
||||
color: var(--grey);
|
||||
}
|
||||
|
||||
button {
|
||||
color: var(--white);
|
||||
background: var(--accent);
|
||||
border: 0;
|
||||
padding: 8px;
|
||||
box-sizing: border-box;
|
||||
border-radius: 900px;
|
||||
text-align: center;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
button:disabled {
|
||||
filter: brightness(0.6);
|
||||
}
|
||||
|
||||
header {
|
||||
width: 100%;
|
||||
height: 80px;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
border-bottom: 1px solid var(--grey);
|
||||
}
|
||||
|
||||
#logo {
|
||||
margin: 0 24px;
|
||||
}
|
||||
|
||||
#startButtons {
|
||||
margin: 64px auto;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
#startButtons > * {
|
||||
width: 440px;
|
||||
}
|
||||
|
||||
#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;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
#properties {
|
||||
background: var(--dark-blue);
|
||||
margin: 80px 160px;
|
||||
padding: 40px;
|
||||
border-radius: 30px;
|
||||
flex-direction: column;
|
||||
justify-content: space-evenly;
|
||||
|
||||
}
|
||||
|
||||
.property {
|
||||
width: 100%;
|
||||
margin: 20px 0px;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
|
||||
}
|
||||
|
||||
.property > label {
|
||||
width: 40%;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.property > input {
|
||||
width: 440px;
|
||||
}
|
||||
Reference in New Issue
Block a user