-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
109 lines (98 loc) · 1.95 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
/*
@import url(http://fonts.googleapis.com/css?family=Lobster+Two:700);
@import url(http://fonts.googleapis.com/css?family=Risque|Monoton|Metal+Mania|Baumans|Comfortaa|Revalia|Righteous|Nova+Script|Audiowide|Faster+One);
*/
/*
font-family: 'Risque', cursive;
font-family: 'Monoton', cursive;
font-family: 'Metal Mania', cursive;
font-family: 'Baumans', cursive;
font-family: 'Comfortaa', cursive;
font-family: 'Revalia', cursive;
font-family: 'Righteous', cursive;
font-family: 'Nova Script', cursive;
font-family: 'Audiowide', cursive;
font-family: 'Faster One', cursive;
*/
html, body {
margin: 0px;
padding 0px;
}
.logo {
position:fixed;
top:0.5em;
left:0.5em;
}
.logo a{
text-shadow: 2px 2px 3px #000, 1px 3px 5px #263954;
font-family: 'Audiowide', cursive;
color:white;
font-size:3em;
text-decoration: none;
}
.menu, .menu ul{
list-style:none outside none;
}
.menu a {
color:white;
text-shadow: 2px 2px 3px #000, 1px 3px 5px #263954;
font-family: 'Audiowide', cursive;
text-decoration: none;
border: 0.002em transparent solid;
animation-duration: 0.4s;
animation-name: menuRelease;
}
.menu a:hover{
color: #98b1f6;
text-shadow: 2px 2px 3px #000, 1px 3px 5px #263954;
padding-left:0.5em;
animation-duration: 1s;
animation-name: menuSelect;
}
@keyframes menuSelect {
from {
padding-left:0em;
color:white;
}
to {
padding-left:0.5em;
color: #98b1f6;
}
}
@keyframes menuRelease {
from {
padding-left:0.5em;
color: #98b1f6;
}
to {
padding-left:0em;
color:white;
}
}
.subTitle {
font-size: 0.4em;
margin-top:-0.8em;
}
.hidden {
visibility: hidden;
width:0px;
height:0px;
float:left;
}
.carlist {
visibility: hidden;
width:0px;
height:0px;
}
.carSelection{
visibility: hidden;
position:absolute;
top:0px;
left:0px;
}
.prevnext{
background-color:black;
}
.prevnext:hover{
background-color:grey;
}