-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
131 lines (117 loc) · 2.28 KB
/
style.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
body {
/* background-image: -webkit-gradient( */
/* linear, */
/* left bottom, */
/* left top, */
/* color-stop(0.46, rgb(255,255,255)), */
/* color-stop(0.73, rgb(88,191,95)) */
/* ); */
/* background-image: -moz-linear-gradient( */
/* center bottom, */
/* rgb(255,255,255) 46%, */
/* rgb(88,191,95) 73% */
/* ); */
/* background-repeat: no-repeat; */
/* background-attachment: fixed; */
/* background-position: center center; */
/* -webkit-background-size: cover; */
/* -moz-background-size: cover; */
/* -o-background-size: cover; */
/* background-size: cover; */
}
#vis
{
float: left;
width: 60%;
padding-left: 50;
}
#fig
{
margin-left: auto;
margin-right: auto;
}
#jsddm
{
float: left;
margin: 0;
padding: 0;
}
#jsddm li
{
list-style: none;
padding: 1;
border-top: 2px solid white;
font: 12px Tahoma, Arial;
clear: both;
}
#jsddm li a
{
display: block;
background: #324143;
padding: 5px 12px;
text-decoration: none;
border-right: 1px solid white;
color: #EAFFED;
white-space: nowrap
}
#jsddm li a:hover
{
background: #24313C
}
#jsddm li ul
{
display: none;
margin: 0;
padding: 0;
position: relative;
visibility: hidden;
white-space: nowrap;
float: none;
}
#jsddm li ul li
{
height: auto;
background: #A9C251;
color: #24313C;
border-top: 1px solid white;
float: none;
padding: 3;
}
#jsddm li ul li a
{
display: block;
background: #A9C251;
color: #24313C;
text-decoration: none;
border-right: 1px solid white;
white-space: nowrap;
text-align:center;
}
#jsddm li ul li a:hover
{
background: #A9C251;
}
/* create an arrow that points down */
div.arrow-down {
width:0px;
height:0px;
border-left:5px solid transparent;
border-right:5px solid transparent;
border-top:5px solid #A9C251;
font-size:0px;
line-height:0px;
display: inline;
margin-right: 10px
}
/* create an arrow that points right */
div.arrow-right {
width:0px;
height:0px;
border-bottom:5px solid transparent;
border-top:5px solid transparent;
border-left:5px solid #A9C251;
font-size:0px;
line-height:0px;
display: inline;
margin-right: 10px;
}