-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBarbellCalculator.css
More file actions
59 lines (53 loc) · 954 Bytes
/
BarbellCalculator.css
File metadata and controls
59 lines (53 loc) · 954 Bytes
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
/*Visualized bags(plates) */
.rect_style {
stroke:black;
stroke-width:5;
}
/*Four set of external bags
with four different but similar colors*/
.rect_color_1{
fill:#FFC863;
}
.rect_color_2{
fill:#FFB939;
}
.rect_color_3{
fill:#C58000;
}
/*When the opacity of bag image is 1,
the bag is showed explicitly */
.rect_obvious{
opacity:1;
}
/*when not used, blur image*/
.rect_blur{
opacity:0.2;
}
/*When not available, disappear image*/
.rect_none{
opacity: 0;
}
/*View Postions of bag image*/
.bag_postion_1{
position:relative;
}
.bag_postion_2{
position:relative;
left: 20px;
}
.bag_postion_3{
position:relative;
left: 40px;
}
.bag_postion_4{
position:relative;
left: 220px;
}
.bag_postion_5{
position:relative;
left: 240px;
}
.bag_postion_6{
position:relative;
left: 260px;
}