Give buttons cursor: pointer; Make border radii more consistent by not using em everywhere.
This commit is contained in:
parent
d030462d12
commit
e0e507348c
1 changed files with 5 additions and 4 deletions
|
@ -32,6 +32,7 @@ a {
|
||||||
button{
|
button{
|
||||||
border: none;
|
border: none;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
|
cursor: pointer;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background-color: white;
|
background-color: white;
|
||||||
|
@ -102,11 +103,11 @@ main-router {
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
margin: 0.5em;
|
margin: 0.5em;
|
||||||
|
|
||||||
border-radius: 0.5em;
|
border-radius: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.panel-heading {
|
.panel-heading {
|
||||||
border-radius: 0.5em 0.5em 0 0;
|
border-radius: 10px 10px 0 0;
|
||||||
background-size: cover;
|
background-size: cover;
|
||||||
padding: 0.6em 0;
|
padding: 0.6em 0;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
@ -115,7 +116,7 @@ main-router {
|
||||||
}
|
}
|
||||||
|
|
||||||
.panel-footer {
|
.panel-footer {
|
||||||
border-radius: 0 0 0.5em 0.5em;
|
border-radius: 0 0 10px 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.panel-body > p {
|
.panel-body > p {
|
||||||
|
@ -128,7 +129,7 @@ main-router {
|
||||||
#content {
|
#content {
|
||||||
margin: auto;
|
margin: auto;
|
||||||
max-width: 980px;
|
max-width: 980px;
|
||||||
border-radius: 1em;
|
border-radius: 10px;
|
||||||
padding-bottom: 1em;
|
padding-bottom: 1em;
|
||||||
background-color: rgba(0,0,0,0.1);
|
background-color: rgba(0,0,0,0.1);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue