From 8d7c14948d477453cf1bf94d0fd9ea5eb9eb1fed Mon Sep 17 00:00:00 2001 From: moepoi Date: Tue, 9 Nov 2021 09:15:55 +0700 Subject: [PATCH] Added success-add css --- public/css/success-add.css | 106 +++++++++++++++++++++++++++++++++++++ 1 file changed, 106 insertions(+) create mode 100644 public/css/success-add.css diff --git a/public/css/success-add.css b/public/css/success-add.css new file mode 100644 index 0000000..7510167 --- /dev/null +++ b/public/css/success-add.css @@ -0,0 +1,106 @@ +body { + font-family: 'Poppins', sans-serif; + background-color: #1b1c1e; +} + +.nav-color { + background-color: #212226; +} + +.card { + position: center; + margin: auto; + text-align: center; + border-radius: 20px; + background-color: #212226; +} + +.icon { + position: center; + margin: auto; + width: 70%; + height: 70%; +} + +.btn-pay { + width: 100%; + background-color: darkred; + border-color: darkred; + border-radius: 100px; + position: center; + margin: auto; + text-align: center; +} + +.btn-pay:hover { + background-color: red; + border-color: red; +} + +:focus { + outline: 0 !important; + box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important; +} + +@media screen and (max-width: 766px) { + .card h2 { + font-size: 7vw; + } + + .card h5 { + font-size: 5vw; + } + + .navbar-brand { + width: 11vw; + height: 11vw; + } + +} + +@media screen and (min-width: 767px) { + .card h2 { + font-size: 4vw; + } + + .card h5 { + font-size: 2vw; + } + + .navbar-brand { + width: 8vw; + height: 8vw; + } + +} + +@media screen and (min-width: 993px) { + .card h2 { + font-size: 3vw; + } + + .card h5 { + font-size: 1.3vw; + } + + .navbar-brand { + width: 6vw; + height: 6vw; + } + +} + +@media screen and (min-width: 1400px) { + .card h2 { + font-size: 4vw; + } + + .card h5 { + font-size: 2vw; + } + + .navbar-brand { + width: 6vw; + height: 6vw; + } +} \ No newline at end of file