-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsubcomponents.css
41 lines (35 loc) · 1.06 KB
/
subcomponents.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/* Component naming patterns from around the Web
--------------------------------------------------*/
/* Example of components of a .modal module from Twitter Bootstrap
*
* <div class="modal">
* <div class="modal-header">
* <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
* <h3>Modal header</h3>
* </div>
* <div class="modal-body">
* <p>One fine body…</p>
* </div>
* <div class="modal-footer">
* <a href="#" class="btn">Close</a>
* <a href="#" class="btn btn-primary">Save changes</a>
* </div>
* </div>
*
*/
.modal-header {}
.modal-body {}
.modal-footer {}
/* Additional components that could be used with .modal */
.modal-wrap {}
.modal-inner {} /* prefer inner to wrap. Inner can be a component inside of modal, where .modal-wrap is a component outside of .modal{} */
/* You could shorten the component names if desired */
.modal-hdr {}
.modal-bdy {}
.modal-ftr {}
.modal-innr {}
/* From _S Theme
--------------------------------------------------*/
.site-header {}
.site-nav {}
.site-footer {}