Better color on login page
This commit is contained in:
parent
3429faa11a
commit
f0d7701151
1 changed files with 26 additions and 0 deletions
|
|
@ -42,8 +42,34 @@ button {
|
|||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
|
||||
/* Add a shadow to make the buttons look like they are floating */
|
||||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
/* Some nice flat nuetral shades for the user buttons */
|
||||
|
||||
li:nth-child(1) > button {
|
||||
background-color: #3939ff;
|
||||
color: white;
|
||||
}
|
||||
|
||||
li:nth-child(2) > button {
|
||||
background-color: #156a14;
|
||||
color: white;
|
||||
}
|
||||
|
||||
li:nth-child(3) > button {
|
||||
background-color: #325293;
|
||||
color: white;
|
||||
}
|
||||
|
||||
li:nth-child(4) > button {
|
||||
background-color: #9a1f1f;
|
||||
color: white;
|
||||
}
|
||||
|
||||
|
||||
</style>
|
||||
|
||||
<script>
|
||||
|
|
|
|||
Loading…
Reference in a new issue