-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle-events.css
92 lines (69 loc) · 1.33 KB
/
style-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
/*TOP BAR*/
.header-events {
}
.header-events__top {
background-color: #242424;
margin-top: 2rem;
height: 1rem;
animation: glow 6s infinite;
border-bottom: 1px solid #EE2627;
border-top: 1px solid #EE2627;
}
.back-arrow {
width: 3rem;
display: inline-block;
margin-left: 2rem;
animation: glow 1s infinite;
transform: translateY(1rem);
}
.burger-menu {
width: 6rem;
display: inline-block;
margin-left: 2rem;
animation: glow 1s infinite;
transform: translateY(1.2rem);
}
.logo-events {
display: block;
width: 15rem;
text-align: right;
margin-left: auto;
margin-right: 0;
animation: glow 1s infinite;
}
/*EVENTS*/
.events-heading {
display: inline;
font-size: 4rem;
font-weight: 300;
border-bottom: 1px solid #EE2627;
}
.events-text-cat {
margin: 3rem;
}
.categories-list {
list-style: none;
}
.categories-item {
display: inline-block;
margin-right: 3rem;
font-size: 1.5rem;
}
.categories-item:hover {
border-bottom: 1px solid #EE2627;
}
/*EVENT BLOCK*/
.event-block {
width: 100%;
height: 20rem;
display: grid;
grid-template-columns: 1fr 1fr;
grid-gap: 1rem;
margin-bottom: 3rem;
background-color: #525252;
align-items: center;
}
.block-img {
width: 100%;
height: 100%;
}