-
Notifications
You must be signed in to change notification settings - Fork 0
/
custom.css
117 lines (99 loc) · 2.1 KB
/
custom.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
@import url("https://fonts.googleapis.com/css2?family=Baloo+Thambi+2:wght@400;500&display=swap");
* {
font-family: "Baloo Thambi 2", cursive !important;
}
.site {
display: flex;
min-height: 100vh;
flex-direction: column;
}
.site-container {
flex: 1;
}
/* navigation */
.uk-navbar-nav .uk-active {
border-bottom: 5px solid rgb(223, 97, 75);
border-radius: 5px;
}
/* cards */
.uk-card {
transition: transform 500ms;
}
.uk-card:hover {
transform: scale(1.1, 1.1);
}
.uk-card-title {
font-size: 20px !important;
}
.uk-card.uk-border-rounded {
border-radius: 15px;
}
.uk-circle {
background-color: transparent;
width: 30px;
height: 30px;
margin-bottom: 25px;
border-radius: 50%;
}
#previous_events .uk-card-header {
border-top-left-radius: 15px;
border-bottom: none;
margin-bottom: 30px;
}
#next_event > div > a > div {
height: 100px !important;
}
@media (max-width: 959px) {
.users {
margin-top: 3rem !important;
}
#next_event .uk-card-title {
height: 210px;
}
}
@media (min-width: 960px) {
.users {
margin-top: 13vh !important;
}
#next_event .uk-card-title {
height: 190px;
}
}
.users span.more {
font-size: 16px;
padding: 0px;
}
/* set colors */
.uk-blackground-black-bis {
background-color: hsl(0, 0%, 7%);
}
.uk-text-danger-bis {
color: rgb(223, 97, 75) !important;
}
.uk-text-purple {
color: #8a41f7 !important;
}
.uk-circle.uk-background-danger {
border: rgb(223, 97, 75) 4px solid !important;
}
.uk-circle.uk-background-primary {
border: rgb(21, 126, 247) 4px solid;
}
.uk-circle.uk-background-success {
border: rgb(63, 219, 206) 4px solid;
}
.uk-circle.uk-background-rose {
border: rgb(218, 20, 96) 4px solid;
}
#previous_events .uk-card-header.uk-border-danger {
border-left: tomato 4px solid !important;
}
#previous_events .uk-card-header.uk-border-primary {
border-left: rgb(21, 126, 247) 4px solid !important;
}
#previous_events .uk-card-header.uk-border-success {
border-left: rgb(63, 219, 206) 4px solid !important;
}
#previous_events .uk-card-header.uk-border-rose {
border-left: rgb(218, 20, 96) 4px solid !important;
}