-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
70 lines (61 loc) · 1.05 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
#carousel {
width: 600px;
height: 400px;
background-color: #2E2E2E;
margin: auto;
overflow: hidden;
position: relative;
box-shadow: 0px 3px 12px #808080;
}
h1 {
width: 550px;
margin: 20px auto;
color: #6B89A5;
font-family: Arial;
}
#slider img {
float: left;
}
#controls {
margin: auto;
width: 120px;
margin-top: 10px;
}
/*img#image {
opacity: 1;
}*/
#previous, #next {
position: absolute;
top: 45%;
left: 10px;
width: 40px;
height: 40px;
margin-top: -20px;
font-size: 50px;
font-weight: 100;
line-height: 30px;
color: #FFF;
text-align: center;
background: #222;
border: 2px solid #FFF;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
opacity: 0.1;
z-index: 100;
cursor: hand; cursor: pointer;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
#previous:hover, #next:hover {
opacity: 0.6;
}
#previous:hover, #next:hover, #previous, #next {
-webkit-transition-duration: 0.4s;
-moz-transition-duration: 0.4s;
-o-transition-duration: 0.4s;
transition-duration: 0.4s;
}
#next {
right: 15px;
left: auto;
}