aboutsummaryrefslogtreecommitdiff
path: root/static/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'static/style.css')
-rw-r--r--static/style.css18
1 files changed, 12 insertions, 6 deletions
diff --git a/static/style.css b/static/style.css
index 07f25fa3..03e60cf3 100644
--- a/static/style.css
+++ b/static/style.css
@@ -91,26 +91,32 @@ html, body {
"Buttons" for changing between weekly and monthly layout
*/
-
.change-view {
display: flex;
flex-direction: row;
justify-content: space-evenly;
}
-.change-view a {
+.change-view .btn {
+ margin-top: 1ex;
+ margin-bottom: 1ex;
+}
+
+.btn {
padding: 0.5em;
background-color: #3399ff;
- text-decoration: none;
color: white;
box-shadow: 1ex 1ex gray;
- margin-top: 1ex;
- margin-bottom: 1ex;
+ /* if a */
+ text-decoration: none;
+
+ /* if button */
+ border: none;
}
-.change-view a:active {
+.btn:active {
transform: translate(1ex, 1ex);
box-shadow: none;
}