mirror of
https://gitlab.com/nekoya/web.git
synced 2024-11-13 01:46:23 +01:00
Changed close button style on index.ejs
This commit is contained in:
parent
452cec0223
commit
d67ac3bf08
2 changed files with 13 additions and 1 deletions
|
@ -21,6 +21,18 @@ body {
|
|||
width: 5%;
|
||||
}
|
||||
|
||||
.button-close {
|
||||
color: white;
|
||||
background-color: darkred;
|
||||
border-color: darkred;
|
||||
border-radius: 100px;
|
||||
}
|
||||
|
||||
.button-close:hover {
|
||||
background-color: red;
|
||||
border-color: red;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 500px) {
|
||||
.navbar-brand {
|
||||
width: 15vw;
|
||||
|
|
|
@ -580,7 +580,7 @@
|
|||
You have successfully subscribed to the newsletter. Thank you for your subscription.
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
|
||||
<button type="button" class="btn btn-secondary button-close" data-dismiss="modal">Close</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue