apostrophe/assets/sass/components/_buttons.scss

34 lines
531 B
SCSS
Raw Normal View History

2018-05-30 16:41:16 +00:00
button {
margin-left: 5px;
border:none;
2018-05-30 19:52:26 +00:00
color: black;
2018-05-30 16:41:16 +00:00
font-size: 20px;
2018-05-30 19:52:26 +00:00
background: #ec6410;
2018-05-30 16:41:16 +00:00
padding: 10px 20px 10px 20px;
text-decoration: none;
2018-05-30 19:52:26 +00:00
height: 100%;
2018-05-30 16:41:16 +00:00
}
button:hover {
2018-05-30 19:52:26 +00:00
background: rgb(150, 55, 0);
color: whitesmoke;
2018-05-30 16:41:16 +00:00
text-decoration: none;
}
.donate {
background-color: rgba(194, 194, 194, 0);
color: #6b6b6b;
}
.donate:hover {
background: #6b6b6b;
color: white;
2018-05-30 23:13:27 +00:00
}
/* Maximum width */
@media (max-width: 480px) {
#download {
display: none;
}
2018-05-30 16:41:16 +00:00
}