_tables.scss
1.54 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
/* TABLES */
.table-hover > tbody > tr:hover > td,
.table-hover > tbody > tr:hover > th {
background-color: $default-bg-hover-color;
}
.table {
thead > tr {
> th {
border-bottom: 2px solid $main-bg-color;
text-transform: uppercase;
font-size: 0.875em;
> a span {
color: $text-color;
}
}
}
tbody > tr {
> td {
font-size: 0.875em;
vertical-align: middle;
border-top: 1px solid $main-bg-color;
padding: 12px 8px;
&:first-child {
font-size: 1.125em;
font-weight: bold;
}
}
td {
.call-type {
display: block;
font-size: 0.75em;
text-align: center;
}
.first-line {
line-height: 1.5;
font-weight: 400;
font-size: 1.125em;
span {
font-size: 0.875em;
color: #969696;
font-weight: 300;
}
}
.second-line {
font-size: 0.875em;
line-height: 1.2;
}
}
&.table-line-fb > td {
background-color: #9daccb;
color: #262525;
}
&.table-line-twitter > td {
background-color: #9fccff;
color: #262525;
}
&.table-line-plus > td {
background-color: #eea59c;
color: #262525;
}
}
a {
&.table-link {
margin: 0 5px;
font-size: 1.125em;
&:hover {
text-decoration: none;
color: #2980b9;
}
&.danger {
color: $red-color;
&:hover {
color: $red-color-dark;
}
}
}
}
&.table-condensed {
tbody > tr {
> td {
padding: 8px 5px;
}
}
}
}
.table-striped {
tbody > tr {
> td {
width: 50%;
background: none;
border: none;
border-bottom: 1px solid #ebebeb;
}
}
}