Files
flask_url_shortener/tiny0/static/style.css
T

182 lines
2.5 KiB
CSS
Raw Normal View History

2020-07-19 16:51:54 +00:00
* {
margin: 0;
padding: 0;
font-family: 'Roboto Mono', monospace;
2020-07-19 16:51:54 +00:00
}
2020-07-18 16:40:51 +00:00
body {
2020-07-19 16:51:54 +00:00
background: #121212;
2020-07-18 23:39:18 +00:00
}
.headers {
position: absolute;
left: 0;
right: 0;
top: 3vh;
text-align: center;
}
.title:link {
color: #bb86fc;
text-decoration: none;
font-size: 50px;
font-weight: bold;
}
.title:visited {
color: #bb86fc;
}
.title:hover {
color: #7b59a5;
}
.desc {
color: #ffffff;
}
2020-07-19 16:51:54 +00:00
.container {
position: absolute;
left: 0;
right: 0;
z-index: 100;
2020-07-19 16:51:54 +00:00
background-color: #2c2c2c;
border-radius: 8px;
padding: 30px 0px;
box-shadow: 0px 10px 20px #000000;
width: 80vw;
2020-08-07 10:50:56 +03:00
height: 100px;
margin: 35vh auto 0 auto;
2020-07-19 16:51:54 +00:00
}
.inputs {
display: flex;
justify-content: center;
height: 50px;
margin-top: 25px;
2020-07-18 23:39:18 +00:00
}
.url {
2020-07-19 16:51:54 +00:00
background: #121212;
border: 2px solid #bb86fc;
color: #ffffff;
width: 60%;
padding: 10px 10px;
2020-07-18 23:39:18 +00:00
}
.url:focus {
2020-07-19 16:51:54 +00:00
border-color: #7b59a5;
2020-07-18 23:39:18 +00:00
}
.button {
2020-07-19 16:51:54 +00:00
background: #bb86fc;
border: 2px solid #bb86fc;
border-radius: 3px;
color: #000000;
font-weight: bold;
2020-07-19 16:51:54 +00:00
display: inline-block;
padding: 0 1vw 0 1vw;
margin-left: 1vw;
width: auto;
2020-07-18 16:40:51 +00:00
}
2020-07-18 23:39:18 +00:00
.button:hover {
2020-07-19 16:51:54 +00:00
background: #7b59a5;
border-color: #7b59a5;
}
2020-07-20 17:51:52 +00:00
.url-error-message {
color: #ffffff;
text-align: center;
font-size: 100%;
margin: 2vh 0 0 0;
}
2020-07-19 21:52:15 +00:00
2020-07-20 17:51:52 +00:00
.error-message {
position: absolute;
left: 0;
right: 0;
color: #ffffff;
text-align: center;
margin: 40vh auto 0 auto;
font-size: 30px;
2020-07-20 17:51:52 +00:00
}
2020-07-23 18:26:18 +00:00
.donation {
position: absolute;
left: 0;
right: 0;
z-index: 100;
2020-07-23 18:26:18 +00:00
color: #ffffff;
list-style: none;
text-align: center;
2020-08-07 10:50:56 +03:00
margin: 30vh auto 0 auto;
}
.donation h1 {
margin-bottom: 2vh;
}
2020-08-18 12:20:07 +03:00
.donation h3 {
2020-08-07 10:50:56 +03:00
margin-bottom: 4vh;
}
2020-08-18 12:20:07 +03:00
.donation a:link {
color: #bb86fc;
text-decoration: none;
2020-07-23 18:26:18 +00:00
}
2020-08-18 12:20:07 +03:00
.donation a:visited {
color: #bb86fc;
}
.donation a:hover {
color: #7b59a5;
}
2020-07-23 18:26:18 +00:00
2020-07-19 21:52:15 +00:00
.page-container {
position: relative;
min-height: 100vh;
}
.content-wrap {
padding-bottom: 2.5rem;
}
footer {
position: absolute;
bottom: 0;
width: 100%;
height: 2.5rem;
margin-bottom: 5vh;
}
.footer-list {
list-style: none;
text-align: center;
}
.footer-list li {
color: #ffffff;
2020-07-23 18:26:18 +00:00
display: inline;
2020-07-19 21:52:15 +00:00
}
2020-08-18 12:20:07 +03:00
.footer-list a:link {
2020-07-19 21:52:15 +00:00
color: #bb86fc;
text-decoration: none;
}
2020-08-18 12:20:07 +03:00
.footer-list a:visited {
2020-07-23 18:26:18 +00:00
color: #bb86fc;
}
2020-08-18 12:20:07 +03:00
.footer-list a:hover {
2020-07-19 21:52:15 +00:00
color: #7b59a5;
}
.copyright {
font-family: serif;
}