-
Notifications
You must be signed in to change notification settings - Fork 3
/
rack.css
77 lines (67 loc) · 1.76 KB
/
rack.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
.rack-container {
position: relative;
padding: 15px;
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
color: #333;
width: 800px;
height: 125px;
border-radius: 5px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
background-image: linear-gradient(bottom, rgb(189,189,189) 0%, rgb(230,230,230) 54%);
background-image: -o-linear-gradient(bottom, rgb(189,189,189) 0%, rgb(230,230,230) 54%);
background-image: -moz-linear-gradient(bottom, rgb(189,189,189) 0%, rgb(230,230,230) 54%);
background-image: -webkit-linear-gradient(bottom, rgb(189,189,189) 0%, rgb(230,230,230) 54%);
background-image: -ms-linear-gradient(bottom, rgb(189,189,189) 0%, rgb(230,230,230) 54%);
border: 1px solid #ddd;
}
.rack-container .rack-logo {
background: no-repeat url('./webaudiocomponents-logo.png');
width: 100px;
height: 100px;
}
.rack-text {
text-transform: lowercase;
position: absolute;
left: 15px;
top: 105px;
line-height: normal;
}
.rack-container .rack-name {
float: left;
margin-top: 10px;
font-size: 30px;
}
.rack-container .rack-logo-text {
float: left;
margin-top: 24px;
margin-left: 5px;
color: #999;
}
.rack-container .rack-params {
list-style-type: none;
position: absolute;
right: 0px;
top: 10px;
}
.rack-container .rack-param {
float: right;
width: 100px;
height: 100px;
text-align: center;
}
.rack-container .rack-param .rack-param-name {
}
.rack-container .rack-param .rack-param-control {
width: 50px;
height: 50px;
margin: 0 auto;
margin-top: 10px;
}
.rack-container .rack-param .rack-param-control .button-container {
margin-left: 5px;
margin-top: 15px;
}
.rack-container .rack-param .rack-param-value {
font-weight: bold;
}