-
Notifications
You must be signed in to change notification settings - Fork 362
/
Copy pathgaggle.css
82 lines (67 loc) · 1.56 KB
/
gaggle.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
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
@import url(https://fonts.googleapis.com/css?family=Patua+One|Open+Sans);
* {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
body {
background:#353a40;
}
table {
border-collapse: separate;
background:#fff;
@include border-radius(5px);
margin:10px auto;
@include box-shadow(0px 0px 5px rgba(0,0,0,0.3));
}
thead {
@include border-radius(5px);
}
thead th {
font-family: 'Patua One', cursive;
font-size:16px;
font-weight:400;
color:#5f6062;
@include text-shadow(1px 1px 0px rgba(0,0,0,0.5));
text-align:left;
padding:20px;
@include background-image(linear-gradient(#646f7f, #4a5564));
border-top:1px solid #858d99;
&:first-child {
@include border-top-left-radius(5px);
}
&:last-child {
@include border-top-right-radius(5px);
}
}
tbody tr td {
font-family: 'Open Sans', sans-serif;
font-weight:400;
color:#5f6062;
font-size:13px;
padding:20px 20px 20px 20px;
border-bottom:1px solid #e0e0e0;
}
tbody tr:nth-child(2n) {
background:#f0f3f5;
}
tbody tr:last-child td {
border-bottom:none;
&:first-child {
@include border-bottom-left-radius(5px);
}
&:last-child {
@include border-bottom-right-radius(5px);
}
}
tbody:hover > tr td {
@include opacity(0.5);
/* uncomment for blur effect */
/* color:transparent;
@include text-shadow(0px 0px 2px rgba(0,0,0,0.8));*/
}
tbody:hover > tr:hover td {
@include text-shadow(none);
color:#2d2d2d;
@include opacity(1.0);
}