mirror of
https://gitlab.com/nekoya/web.git
synced 2024-11-14 10:26:40 +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%;
|
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) {
|
@media screen and (max-width: 500px) {
|
||||||
.navbar-brand {
|
.navbar-brand {
|
||||||
width: 15vw;
|
width: 15vw;
|
||||||
|
|
|
@ -580,7 +580,7 @@
|
||||||
You have successfully subscribed to the newsletter. Thank you for your subscription.
|
You have successfully subscribed to the newsletter. Thank you for your subscription.
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-footer">
|
<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>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue