add payment views, styling and its helper methods
This commit is contained in:
parent
81ef41be8b
commit
14594c7a4d
7 changed files with 118 additions and 0 deletions
BIN
app/assets/images/credit_card.png
Normal file
BIN
app/assets/images/credit_card.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4 KiB |
|
|
@ -10,6 +10,7 @@
|
|||
*= require osem-splash
|
||||
*= require font-awesome
|
||||
*= require osem-fonts
|
||||
*= require osem-payments
|
||||
*= require bootstrap-markdown
|
||||
*= require bootstrap-datetimepicker
|
||||
*= require leaflet
|
||||
|
|
|
|||
24
app/assets/stylesheets/osem-payments.css.scss
Normal file
24
app/assets/stylesheets/osem-payments.css.scss
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
.price-tags {
|
||||
list-style-type: none;
|
||||
padding-top: 2rem;
|
||||
// display: inline-block;
|
||||
}
|
||||
.price-tags li {
|
||||
line-height: 40px;
|
||||
position: relative;
|
||||
margin-right: -3rem;
|
||||
}
|
||||
.price-tags a {
|
||||
background: #2f991d;
|
||||
color: #fff;
|
||||
font-size: 1.5rem;
|
||||
padding: 9px 10px;
|
||||
text-decoration: none;
|
||||
}
|
||||
.price-tags a:after {
|
||||
content: "";
|
||||
float: left;
|
||||
border-top: 20px solid transparent;
|
||||
border-right: 20px solid #2f991d;
|
||||
border-bottom: 20px solid transparent;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue