You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

83 lines
1.2 KiB

6 years ago
@import 'modern-normalize';
body {
6 years ago
color: #2A2B2C;
background-color: #F0918E;
}
6 years ago
6 years ago
a {
color: #E45D58;
text-decoration: none;
transition: color 0.2s ease;
}
a:hover {
color: #DB2A24;
}
6 years ago
.container {
width: 800px;
margin: 2em auto;
6 years ago
background: rgba(255, 255, 255, 0.6);
border-radius: 3px;
padding: 1em;
text-align: center;
}
.description {
font-weight: 500;
6 years ago
margin-top: 1.4em;
6 years ago
font-size: 1.4em;
}
.input-container {
position: relative;
width: 300px;
margin: 0 auto;
font-size: 2em;
}
.input-container input {
width: 100%;
6 years ago
border: 2px solid rgba(255, 255, 255, 0.3);
background: rgba(255, 255, 255, 0.3);
6 years ago
padding: 0.1em;
border-radius: 3px;
outline: none;
padding-left: 1em;
}
.input-container .prefix {
position: absolute;
top: 50%;
left: 0.1em;
transform: translateY(-50%);
color: #F0918E;
6 years ago
}
.badge-preview {
6 years ago
margin: 2em 0;
height: 20px;
6 years ago
}
.output-title {
6 years ago
margin-top: 1em;
}
pre {
text-align: left;
font-size: 0.8em;
background: rgba(255, 255, 255, 0.3);
padding: 1em;
6 years ago
border-radius: 3px;
overflow-x: scroll;
}
6 years ago
footer {
margin-top: 3em;
text-align: left;
}
footer .me {
float: right;
}