-
Notifications
You must be signed in to change notification settings - Fork 0
/
events.css
123 lines (105 loc) · 1.79 KB
/
events.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
body {
font-family: 'Raleway', 'Open Sans', sans-serif;
background: url(img/evening.jpg) no-repeat center center fixed;
background-size: cover;
}
div#logo {
text-align:center;
height: 120px;
width:100%;
padding-top:10px;
opacity: 0.7;
}
img#logo {
height: 90%;
}
div#banner {
width:600px;
margin: 0 auto;
opacity: 0.7;
}
img#banner {
width:100%;
}
p#banner-text {
text-align: center;
width:600px;
margin: 0 auto;
position:relative;
top:-60px;
font-size: 22pt;
font-weight:100;
}
#container {
margin: auto;
padding-top: 0px;
width: 850px;
text-align: center;
height:0px;
overflow-y-bottom: hidden;
}
#alternate {
margin-top: 35px;
font-size: 20px;
animation: fade 1s;
-webkit-animation: fade 1s;
}
.event {
padding: 15px;
background: rgba(255,255,255,0.7);
margin-top: -20px;
margin-bottom: 35px;
height: 140px;
-webkit-transition: background-color 0.25s ease;
transition: background-color 0.25s ease;
animation: load 0.8s;
-webkit-animation: load 0.8s;
}
.event:hover{
background-color: rgba(255,255,255,0.9);
-webkit-transition: background-color 0.25s ease;
transition: background-color 0.25s ease;
}
.name {
font-size: 30px;
margin-top: 0px;
margin-bottom: 0px;
}
.category {
font-size: 16px;
color: gray;
margin-top: 4px
}
.info{
width: 50%;
height:104px;
float: left;
margin-top: 0px;
margin-bottom: 0px;
}
.time, .location, .rating {
float: right;
width: 50%;
margin-top: 10px;
margin-bottom: 0px;
}
@keyframes fade
{
0% {color: transparent;}
100% {color: black;}
}
@-webkit-keyframes fade
{
0% {color: transparent;}
100% {color: black;}
}
@keyframes load
{
0% {height: 0px; color: transparent;}
100% {height: 140px; color: black;}
}
@-webkit-keyframes load
{
0% {height: 0px; color: transparent;}
100% {height: 140px; color: black;}
}