This repository was archived by the owner on Nov 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.css
90 lines (87 loc) · 1.69 KB
/
plugin.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
83
84
85
86
87
88
89
90
/* Overview Boxes */
.box {
margin-bottom: 25px;
}
.box a:before {
content: "";
position: absolute;
background-color: #789abc;
bottom: 0px;
left: 0.63em;
right: 0.63em;
height: 2px;
opacity: 0.25;
-webkit-transition: all 200ms linear;
-moz-transition: all 200ms linear;
-o-transition: all 200ms linear;
-ms-transition: all 200ms linear;
transition: all 200ms linear;
}
.box, .listbox {
overflow: hidden;
}
.box:hover a:before {
height: 10px;
}
.listbox a:before {
content: "";
position: absolute;
background-color: #789abc;
top: 0;
bottom: 0;
left: 0;
width: 2px;
opacity: 0.25;
-webkit-transition: all 200ms linear;
-moz-transition: all 200ms linear;
-o-transition: all 200ms linear;
-ms-transition: all 200ms linear;
transition: all 200ms linear;
}
.listbox:hover a:before {
width: 10px;
}
.listboxdescription {
font-size: 8pt;
line-height: 14pt;
padding: 7px 10px 1px 10px !important;
background-color: #eee;
height: 50px;
color: #666;
}
.listboxrow {
margin-bottom: 15px !important;
}
.box a, .listbox a {
font-family: Armata, Arial, sans-serif;
font-weight: 300;
background-color: #abcdef;
display:block;
width: 100%;
-webkit-transition: all 200ms linear;
-moz-transition: all 200ms linear;
-o-transition: all 200ms linear;
-ms-transition: all 200ms linear;
transition: all 200ms linear;
}
.box a {
text-align: center;
font-size: 16pt;
height: 70px;
line-height: 70px;
}
.box a span {
line-height: normal;
vertical-align: middle;
}
.listbox a {
text-align: right;
font-size: 12pt;
line-height: 15pt;
padding: 5px 10px 5px 5px;
height: 50px;
}
.box a:hover, .listbox a:hover {
background-color: #dce9f6;
color: #666;
}