fugadalcontrollo/public/stylesheets/style.css

81 lines
1.0 KiB
CSS
Raw Permalink Normal View History

2018-07-21 00:55:00 +02:00
body {
2018-08-10 00:22:02 +02:00
padding: 10px 50px;
background-color: #222;
2018-07-21 00:55:00 +02:00
color: #cecece;
2018-08-10 00:22:02 +02:00
font: 1.7em monospace;
max-width: 800px;
margin: auto auto;
width: 100%;
2018-07-21 00:55:00 +02:00
}
a {
color: #00B7FF;
2018-08-10 00:22:02 +02:00
text-decoration: none;
opacity: 0.8;
}
a:hover {
opacity: 1;
2018-07-21 00:55:00 +02:00
}
2018-07-24 00:29:12 +02:00
h3 {
2018-08-10 00:22:02 +02:00
text-align: right;
text-decoration: underline;
2018-07-24 00:29:12 +02:00
}
2018-08-10 00:22:02 +02:00
h3 .subtitle {
text-decoration: none;
font-size: 0.8em;
}
code {
display: block;
left: 0px;
right: 0px;
position: relative;
background-color: black;
width: 100%;
2018-08-12 00:01:09 +02:00
}
input {
height: 20px;
margin: 10px;
padding: 5px;
width: 300px;
transition: border-color .8s, background-color .8s;
color: black;
}
.score0 {
background-color: #ff222288;
border: 2px solid red;
}
.score1 {
background-color: #ff5716cc;
border: 2px solid #ff6644;
}
.score2 {
background-color: #ff9955;
border: 2px solid #ffcc88;
}
.score3 {
background-color: #0067FF;
border: 2px solid #6496ff;
}
.score4 {
background-color: #33dd33;
border: 2px solid #99FF00;
}
button {
cursor: pointer;
height: 34px;
2018-08-12 00:05:52 +02:00
}
[v-cloak] {
display: none;
2018-08-10 00:22:02 +02:00
}