Buttons and GLAGNE

This commit is contained in:
Tolstoevsky 2019-07-29 12:23:56 +03:00
parent 967ea36388
commit c3b5c17197
2 changed files with 40 additions and 8 deletions

View file

@ -8,6 +8,26 @@ html, body {
min-height: 100%;
}
.button {
width: 180px;
flex: auto;
display: block;
padding: 20px;
background-color: #cde6ea;
box-sizing: border-box;
text-decoration: none;
font-weight: bold;
color: inherit;
text-align: center;
float: right;
font-size: 18px;
transition: background-color 0.2s ease;
}
.button:hover {
background-color: rgba(0, 0, 0, 0.2);
}
nav {
display: flex;
overflow: hidden;
@ -150,4 +170,4 @@ nav > a > div {
.content {
padding: 10px;
}
}