Stickup/static/stickup.css

51 lines
833 B
CSS
Raw Normal View History

2020-11-18 11:40:18 -05:00
body {
margin-left: 10%;
margin-right: 10%;
background-color: lightgray;
font-family: Helvetica,sans-serif;
font-size: 14px;
}
header {
margin-bottom: 3em;
display: flex;
}
2020-11-18 17:46:23 -05:00
#logo {
height: 5em;
width: 5em;
margin-right: 1em;
}
2020-11-18 11:40:18 -05:00
main {
background-color: whitesmoke;
padding: 2% 5%;
border-radius: 0.5em;
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
0 3px 1px -2px rgba(0, 0, 0, 0.2),
0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.result_message {
display: inline-block;
padding: 1% 2%;
border-radius: 0.5em;
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
0 3px 1px -2px rgba(0, 0, 0, 0.2),
0 1px 5px 0 rgba(0, 0, 0, 0.12);
margin: 0.5em;
}
.result_good {
background-color: rgba(0, 255, 0, 0.6);
}
.result_bad {
background-color: rgba(255, 0, 0, 0.6);
}
2020-11-21 14:23:34 -05:00
ul {
margin-top: 0.5em;
margin-bottom: 0.5em;
}