-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
54 lines (38 loc) · 974 Bytes
/
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
/*Add class dropdown to each of the dropdown menus*/
body
{
/*background-image:url('background.jpg');*/
background-color:#cccccc;
}
#canvas {
/*center*/
text-align:center;
}
#title{
/*left*/
text-align:left;
}
#menus{
}
.dropdown select{
/*border: 0;*/
-webkit-appearance: none;
/*-moz-appearance: none;*/
background: url('dropdown_arrow.png') no-repeat; /*Adds background-image*/
background-position: 75px -4px; /*Position of the background-image*/
width: 100px; /*Width of select dropdown to give space for arrow image*/
text-indent: 0.01px;
text-overflow: "";
/*text-align:center;*/
/*background: #cccccc;*/
/*width: 200%;*/
text-align: center;
/*padding-left: 20%;*/
}
.dropdown select > ul >li {
/*text-align: center;*/
display:inline-block;
margin-left: 15px; /* This is when the drop down box appears */
position: relative;
/* background: #cccccc;*/
}