12345678910111213141516171819202122232425262728293031323334353637 |
- .border {
- border:1px solid #CAD5E0 ;
- }
- .border-round {
- padding:6px;
- border-radius:8px;
- }
- .border-round-top-left{
- border-top-left-radius: 8px;
- padding:6px;
- }
- .border-round-top-right{
- border-top-right-radius: 8px;
- padding:6px;
- }
- .border-round-bottom-right{
- border-bottom-right-radius: 8px;
- padding:6px;
- }
- .border-round-bottom-left{
- border-bottom-left-radius: 8px;
- padding:6px;
- }
- .border-right{
- border-right:1px solid #CAD5E0;
- }
- .border-left{
- border-left:1px solid #CAD5E0;
- }
- .border-bottom { border-bottom:1px solid #CAD5E0}
- .border-top { border-top:1px solid #CAD5E0}
|