This repository has been archived on 2024-04-05. You can view files and clone it, but cannot push or open issues/pull-requests.
score-tracker/public/stylesheets/style.css

71 lines
805 B
CSS
Raw Normal View History

body {
2021-10-04 19:31:22 +00:00
padding: 1em;
font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
}
a {
color: #00B7FF;
}
2021-09-30 20:43:23 +00:00
2021-11-22 02:07:44 +00:00
#mobile-view {
max-width: 20em;
margin-left: auto;
margin-right: auto;
display: flex;
flex-direction: column;
}
2021-11-23 00:38:45 +00:00
.flat-content {
flex-direction: row;
justify-content: space-between;
}
.send-to-right {
margin-left: auto;
2021-11-26 19:37:09 +00:00
}
#actions-div {
display: flex;
2021-11-26 19:46:16 +00:00
}
#home-button {
margin-right: auto;
}
button {
padding: 0.25em;
2021-11-26 20:16:24 +00:00
margin: 0em 0.1em;
}
select {
padding: 0.25em;
}
input {
padding: 0.25em;
2021-11-26 20:16:24 +00:00
}
#logout-button {
margin-left: 0.5em;
2021-11-26 21:19:53 +00:00
}
#noscript-message {
background-color: lightcoral;
padding: 1em;
margin-bottom: 3em;
border-radius: .25em;
2021-11-27 06:09:05 +00:00
}
#about-footer {
margin-top: 3em;
text-align: center;
2021-11-27 06:14:29 +00:00
}
p {
line-height: 2;
}
a {
color: black;
2021-11-23 00:38:45 +00:00
}