-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle-responsive.css
More file actions
108 lines (100 loc) · 2.31 KB
/
Copy pathstyle-responsive.css
File metadata and controls
108 lines (100 loc) · 2.31 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
@media (max-width: 979px) {
#UCFHBSearch_and_links { display: none; }
#UCFHBHeader div.UCFHBWrapper { width: 100%; }
}
@media (max-width: 767px) {
#UCFHBHeader { margin-left: -20px; width: 100%; padding-right: 40px; }
#header { margin-left: 0; }
#home .description { margin-top: 10px; }
#below-the-fold { margin-left: 0; }
#below-the-fold .span4 { width: 100%; margin-left: 0; margin-bottom: 20px; }
.news .item { margin-bottom: 10px; }
/* Shrinkable bootstrap tables for tablets/phones.
Responsive table guide via css-tricks.com/responsive-data-tables/ */
table.table.table-striped,
.table.table-striped thead,
.table.table-striped tbody,
.table.table-striped th,
.table.table-striped td,
.table.table-striped tr {
display: block;
}
.table.table-striped tbody {
width: 100%;
}
.table.table-striped thead tr {
position: absolute;
top: -9999px;
left: -9999px;
}
.table.table-striped tr {
margin: 10px 0 0 0;
border-right: 1px solid #ddd;
border-bottom: 1px solid #ddd;
border-left: 1px solid #ddd;
}
.table.table-striped tbody tr td:empty {
display: none;
}
.table.table-striped td,
.table.table-striped td.name,
.table.table-striped td.email,
.table.table-striped td.job_title,
.table.table-striped td.phones {
width: auto;
}
.table.table-striped td.name {
font-size: 14px;
}
.table.table-striped td.job_title {
border-top: 0;
}
.table.table-striped tbody tr td ul {
margin-bottom: 0;
}
.table.table-striped td.phones ul li {
line-height: 16px;
}
.table.table-bordered {
border: 0;
}
.table.table-bordered tbody tr td {
border-left: 0;
}
}
@media (max-width: 480px) {
.navbar .menu {
padding: 0;
}
.navbar ul#header-menu li:after {
content: "";
}
.navbar ul#header-menu li, .navbar ul#header-menu ul.dropdown-menu li {
display: block;
float: none;
margin: 0;
line-height: 13px;
}
.navbar ul#header-menu li a {
display: block;
color: #999;
font-weight: bold;
font-size: 13px;
padding: 6px 15px;
border-radius: 3px 3px 3px 3px;
}
.navbar ul#header-menu li.active a {
color: #fff;
background-color: #222;
}
.navbar ul#header-menu li a:hover {
background-color: #222;
text-decoration: none;
color: #fff;
}
.navbar ul#header-menu b.caret {
border-bottom-color: #fff;
border-top-color: #fff;
margin-top: 4px;
}
}