Left: | ||
Right: |
LEFT | RIGHT |
---|---|
1 * | 1 * |
2 { | 2 { |
3 font-family: Arial, sans; | 3 font-family: Arial, sans; |
4 font-size: 16px; | 4 font-size: 16px; |
5 } | 5 } |
6 | 6 |
7 body | 7 body |
8 { | 8 { |
9 margin: 0; | 9 margin: 0; |
10 line-height: 1.5; | 10 line-height: 1.5; |
(...skipping 699 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
710 display: none; | 710 display: none; |
711 } | 711 } |
712 | 712 |
713 /* overriding display:none above */ | 713 /* overriding display:none above */ |
714 #footer #social-list | 714 #footer #social-list |
715 { | 715 { |
716 display: block; | 716 display: block; |
717 } | 717 } |
718 } | 718 } |
719 | 719 |
720 /* Cards | 720 /* Items |
ire
2018/02/26 19:01:31
There doesn't seem to me to be anything related to
juliandoucette
2018/02/27 13:00:06
Agreed... Wasn't sure what to call it :/ ... Any s
ire
2018/02/28 09:21:54
I'm not sure either. Considering that this may be
juliandoucette
2018/02/28 19:40:00
How about "item"?
ire
2018/03/01 09:06:05
I don't think "item" really has much meaning eithe
juliandoucette
2018/03/01 10:34:09
Yes, at least in the almost identical "features" s
ire
2018/03/01 14:15:07
Alright. I'm still not 100% sure about the name "i
| |
721 *****************************************************************************/ | 721 *****************************************************************************/ |
722 | 722 |
723 .card-deck | 723 .item-group, |
ire
2018/02/26 19:01:31
Did you mean for there to be a comma after this?
juliandoucette
2018/02/27 13:00:06
Yes *blush*
ire
2018/02/28 09:21:54
:P
| |
724 .card-body | 724 .item-body |
725 { | 725 { |
726 margin: 1em 0; | 726 margin-top: 1em; |
727 } | 727 margin-bottom: 1em; |
728 | 728 } |
729 .card | 729 |
730 { | 730 .item |
731 margin: 2em 0 1em 0; | 731 { |
732 } | 732 padding-top: 2em; |
733 | 733 padding-bottom: 2em; |
734 .card-heading | 734 } |
735 | |
736 .item-heading | |
735 { | 737 { |
736 text-transform: uppercase; | 738 text-transform: uppercase; |
737 } | 739 } |
LEFT | RIGHT |