12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- .bg-white
- {
- background-color: #263238;
- }
- .bg-transparent{
- background-color: transparent;
- }
- .no-border{
- border: none;
- }
- .no-shadow{
- box-shadow: none;
- }
- .rounded{
- border-radius:10px ;
- }
- .rounded-top{
- border-top-left-radius:10px ;
- border-top-right-radius:10px ;
- }
- .rounded-bottom{
- border-bottom-left-radius:10px ;
- border-bottom-right-radius:10px ;
- }
- .full-rounded{
- border-radius: 100px;
- }
- .sm-font{
- font-size: 8px;
- }
- .close{
- background-color: #f34c4c;
- min-width: 1px;
- min-height: 3px;
- }
- .bg-blue{
- background-color: #78cdf6;
- }
|