-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathselectors.css
50 lines (42 loc) · 1.03 KB
/
selectors.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
42
43
44
45
46
47
48
49
50
body {
margin: 0;
padding: 1%;
font-size: 81.6%;
line-height: 1.2em;
}
body * {
margin: 0;
padding: 0;
border: 0;
position: relative;
display: inline-block;
float: left;
background-color: transparent;
transition: all 1s ease 0s;
}
.cell {
display: block;
width: 30px;
height: 30px;
position: relative;
box-sizing: border-box;
border-top: 1px solid #eeeeee;
border-left: 1px solid #eeeeee;
}
#wrapper {}
#north {}
#south { clear: both; }
#quadrant-nw tbody { clear: both; }
#quadrant-nw tbody tr { clear: both; }
#quadrant-ne {}
#quadrant-ne .row { clear: both; }
#quadrant-ne .cell:last-child { border-right: 1px solid #eeeeee; }
#quadrant-sw {}
#quadrant-sw .col {}
#quadrant-sw .cell { float: none; }
#quadrant-sw .cell:last-child { border-bottom: 1px solid #eeeeee; }
#quadrant-se {}
#quadrant-se ul { list-style-type: none; }
#quadrant-se > ul > li { clear: both; }
#quadrant-se li:last-child .cell { border-bottom: 1px solid #eeeeee; }
#quadrant-se .cell:last-child { border-right: 1px solid #eeeeee; }