-
Notifications
You must be signed in to change notification settings - Fork 0
/
events.css
148 lines (129 loc) · 2.75 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Raleway", sans-serif;
}
html {
font-size: 62.5%;
font-family: "Raleway", sans-serif;
scroll-behavior: smooth;
}
.global-padding {
padding: 40px 70px;
}
.vertical-padding {
padding: 40px 0;
}
.horizontal-padding {
padding: 0 70px;
}
.global-button {
min-width: 15rem;
background-color: black;
padding: 15px;
text-align: center;
border: 3px solid #91eae4;
font-size: 2rem;
font-weight: 700;
border-radius: 10px;
transition: 0.4s ease;
margin: 30px 5rem;
color: #7f7fd5;
}
.global-button:hover {
min-width: 15rem;
color: black;
background-color: white;
padding: 15px;
text-align: center;
border: 3px solid white;
font-size: 2rem;
font-weight: 700;
border-radius: 10px;
margin: 30px 5rem;
}
#events-page {
width: 100%;
background-image: url("./images/bg.png");
display: flex;
flex-wrap: wrap;
justify-content: center;
}
#events-page .title {
font-size: 6rem;
font-weight: 700;
text-align: center;
background: #7f7fd5;
/* fallback for old browsers */
background: -webkit-linear-gradient(to left, #91eae4, #86a8e7, #7f7fd5);
/* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to left, #91eae4, #86a8e7, #7f7fd5);
/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
#events-table {
width: 100%;
background-color: black;
background-image: url("./images/radial.png");
}
#events-table table {
width: 100%;
padding: 10px;
text-align: left;
border: 3px solid #7f7fd5;
border-radius: 10px;
background-color: black;
margin-bottom: 80px;
}
#events-table tr:hover {
background-color: #212121;
}
#events-table th {
margin: 0 20px 0 20px;
height: 3rem;
font-size: 1.8rem;
padding: 30px;
color: #91eae4;
border: 2px solid #212121;
border-radius: 2px;
}
#events-table td {
margin: 0 20px 0 20px;
height: 3rem;
font-size: 1.4rem;
padding: 15px 30px 15px 30px;
color: white;
vertical-align: middle;
border: 2px solid #212121;
border-radius: 2px;
}
/* MOBILE VIEW */
@media only screen and (max-width: 768px) {
html {
background-color: black;
}
.global-padding {
padding: 20px 40px;
}
#events-page {
width: 100%;
background-image: url("./images/bg.png");
display: flex;
justify-content: center;
}
#events-page .title {
font-size: 4rem;
font-weight: 700;
text-align: center;
background: #7f7fd5;
/* fallback for old browsers */
background: -webkit-linear-gradient(to left, #91eae4, #86a8e7, #7f7fd5);
/* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to left, #91eae4, #86a8e7, #7f7fd5);
/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
}