source: geisa/web/resources/css/verticalSlide.css @ 390

Last change on this file since 390 was 390, checked in by npipsl, 12 years ago

Création du projet GEISA

File size: 4.6 KB
Line 
1.containerSlides {
2    width: 980px;
3    float: left;
4    margin-bottom: 10px;
5}
6
7.containerSlideTitle {
8    background: -moz-linear-gradient(white, #C0C0C0);
9    background: -webkit-linear-gradient(white, #COCOCO);
10    filter: progid:DXImageTransform.Microsoft.gradient(GradientType = 0, startColorstr = 'white', endColorstr = '#C0C0C0'); /*For IE7-8-9*/
11    -moz-border-radius: 4px 4px 4px 4px;
12    -webkit-border-radius: 4px 4px 4px 4px;
13    float: left;
14    padding-top: 5px;
15    padding-left: 10px;
16    font-weight: bold;
17    width: 970px;
18    height: 24px;
19}
20
21.containerSlide {
22    -moz-border-radius: 4px 4px 4px 4px;
23    -webkit-border-radius: 4px 4px 4px 4px;
24    -moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
25    -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
26    background-color: #F5F5F5;
27    margin-bottom: 1px;
28}
29
30.containerSlideTitle:hover {
31    color: white;
32}
33
34.containerSlideTitle.activated {
35    -moz-border-radius: 4px 4px 0 0;
36    -webkit-border-radius: 4px 4px 0 0;
37}
38
39.containerSlideTitle_image {
40    float: left;
41    width: 15px;
42    height: 18px;
43    margin-top: 3px;
44}
45
46.containerSlideTitle_text {
47    float: left;
48    margin-top: -2px;
49    margin-left: 7px;
50}
51
52.containerSlideContent {
53    -moz-border-radius: 0 0 4px 4px;
54    -webkit-border-radius: 0 0 4px 4px;
55    background-color: #F5F5F5;
56}
57
58/** ***************************************************** **/
59/** *********************** INIT.JSP ******************** **/
60/** ***************************************************** **/
61#slide_activities_title:hover .containerSlideTitle_image, #slide_data_title:hover .containerSlideTitle_image, #slide_databases_title:hover .containerSlideTitle_image, #slide_services_title:hover .containerSlideTitle_image {
62    background-image: url("../../resources/icons/arrow_white_right.png");
63    background-repeat: no-repeat;
64}
65
66#slide_activities_title.activated .containerSlideTitle_image, #slide_data_title.activated .containerSlideTitle_image, #slide_databases_title.activated .containerSlideTitle_image, #slide_services_title.activated .containerSlideTitle_image {
67    background-image: url("../../resources/icons/arrow_white_down.png");
68    background-repeat: no-repeat;
69    margin-top: 0;
70}
71
72/** #slide_activities_title **/
73#slide_activities_title:hover, #slide_activities_title.activated {
74    background: #003d6c;
75    background: -moz-linear-gradient(#9ac8ec, #003d6c);
76    background: -webkit-linear-gradient(#9ac8ec, #003d6c);
77    filter: progid:DXImageTransform.Microsoft.gradient(GradientType = 0, startColorstr = '#9ac8ec', endColorstr = '#003d6c'); /*For IE7-8-9*/
78    color: white;
79}
80
81#slide_activities_title .containerSlideTitle_image {
82    background-image: url("../../resources/icons/arrow_blue_right.png");
83    background-repeat: no-repeat;
84}
85
86/** #slide_data_title **/
87#slide_data_title:hover, #slide_data_title.activated {
88    background: #d51311;
89    background: -moz-linear-gradient(#f9adad, #d51311) repeat scroll 0 0 transparent;
90    background: -webkit-linear-gradient(#f9adad, #d51311) repeat scroll 0 0 transparent;
91    filter: progid:DXImageTransform.Microsoft.gradient(GradientType = 0, startColorstr = '#f9adad', endColorstr = '#d51311'); /*For IE7-8-9*/
92    color: white;
93}
94
95#slide_data_title .containerSlideTitle_image {
96    background-image: url("../../resources/icons/arrow_red_right.png");
97    background-repeat: no-repeat;
98}
99
100/** #slide_databases_title **/
101#slide_databases_title:hover, #slide_databases_title.activated {
102    background: #ffcf02;
103    background: -moz-linear-gradient(#f8edc2, #ffcf02) repeat scroll 0 0 transparent;
104    background: -webkit-linear-gradient(#f8edc2, #ffcf02) repeat scroll 0 0 transparent;
105    filter: progid:DXImageTransform.Microsoft.gradient(GradientType = 0, startColorstr = '#f8edc2', endColorstr = '#ffcf02'); /*For IE7-8-9*/
106    color: white;
107}
108
109#slide_databases_title .containerSlideTitle_image {
110    background-image: url("../../resources/icons/arrow_yellow_right.png");
111    background-repeat: no-repeat;
112}
113
114/** #slide_services_title **/
115#slide_services_title:hover, #slide_services_title.activated {
116    background: #0569c7;
117    background: -moz-linear-gradient(#a6d1f8, #0569c7) repeat scroll 0 0 transparent;
118    background: -webkt-linear-gradient(#a6d1f8, #0569c7) repeat scroll 0 0 transparent;
119    filter: progid:DXImageTransform.Microsoft.gradient(GradientType = 0, startColorstr = '#a6d1f8', endColorstr = '#0569c7'); /*For IE7-8-9*/
120    color: white;
121}
122
123#slide_services_title .containerSlideTitle_image {
124    background-image: url("../../resources/icons/arrow_blue_2_right.png");
125    background-repeat: no-repeat;
126}
127
128/** ***************************************************** **/
Note: See TracBrowser for help on using the repository browser.