forked from zzseba78/Kick-Off
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcards.css
157 lines (157 loc) · 2.84 KB
/
cards.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
149
150
151
152
153
154
155
156
157
#site-head {
padding: 10px 0;
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 99;
background-color: white;
border-bottom: 1px solid rgba(0,0,0,0.06);
}
#site-foot {
position: fixed;
z-index: 3;
bottom: 0;
left: 0;
right: 0;
font-size: 0.8rem;
}
.uk-section-xsmall {
padding-top: 0.6rem;
padding-bottom: 0.6rem;
}
.uk-logo img {
width: 50px;
}
.spacer {
height: 60px;
}
.uk-card {
border-top: 2px solid;
position: relative;
-webkit-transition: box-shadow 0.15s ease-out;
transition: box-shadow 0.15s ease-out;
border-radius: 3px;
}
.uk-card:hover {
box-shadow: 0 0 0 7px rgba(0,0,0,0.045);
}
.uk-card .uk-inline {
z-index: 99;
}
.uk-card .uk-card-footer {
padding: 0.55rem 1rem;
}
.uk-card .uk-card-header {
padding: 0.55rem 1rem;
}
.uk-card .cat-txt {
font-weight: 600;
text-transform: uppercase;
font-size: 0.75rem;
letter-spacing: 0.01em;
}
.nature-card .uk-card {
border-top-color: #1E87F0;
}
.uk-subnav li a {
border-radius: 3px;
}
.uk-subnav li.uk-active:nth-child(3) a {
background-color:#8630F0;
}
.uk-subnav li.uk-active:nth-child(4) a {
background-color:#F03A7F;
}
.uk-subnav li.uk-active:nth-child(5) a {
background-color:#E84DF0;
}
.nature-card .uk-card .cat-txt {
color: #1E87F0;
}
.music-card .uk-card {
border-top-color: #8630F0;
}
.music-card .uk-card .cat-txt {
color: #8630F0;
}
.design-card .uk-card {
border-top-color: #E84DF0;
}
.design-card .uk-card .cat-txt {
color: #E84DF0;
}
.photo-card .uk-card {
border-top-color: #F03A7F;
}
.photo-card .uk-card .cat-txt {
color: #F03A7F;
}
.uk-card .uk-overlay-primary {
padding: 0.5rem;
text-align: center;
font-size: 0.7rem;
text-transform: uppercase;
opacity: 0.7;
}
img[data-src][src*='data:image'] { background: rgba(0,0,0,0.1); }
.search-fld {
border-radius: 50px;
padding: 0 1rem;
}
.uk-dropdown.drop-nav {
border-radius: 4px;
box-shadow: 0 2px 24px rgba(0,0,0,.1);
width: 300px;
}
.uk-dropdown.drop-comments {
width: 370px;
}
.drop-nav::after {
bottom: 100%;
right: 4%;
border: solid transparent;
content: '';
height: 0;
width: 0;
position: absolute;
pointer-events: none;
border-color: rgba(255, 255, 255, 0);
border-bottom-color: #ffffff;
border-width: 6px;
margin-left: -6px;
}
.uk-dropdown.uk-dropdown-right-center::after {
right: 100%;
top: 50%;
border: solid transparent;
content: " ";
height: 0;
width: 0;
position: absolute;
pointer-events: none;
border-color: rgba(255, 255, 255, 0);
border-right-color: #ffffff;
border-width: 6px;
margin-top: -6px;
}
.uk-dropdown.uk-dropdown-left-center::after {
left: 100%;
top: 50%;
border: solid transparent;
content: " ";
height: 0;
width: 0;
position: absolute;
pointer-events: none;
border-color: rgba(255, 255, 255, 0);
border-left-color: #ffffff;
border-width: 6px;
margin-top: -6px;
}
.message {
font-size: 0.85rem;
display: block;
line-height: 1.3rem;
padding: 0.5rem 0;
}