-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
95 lines (78 loc) · 1.45 KB
/
Copy pathstyle.css
File metadata and controls
95 lines (78 loc) · 1.45 KB
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
html {
box-sizing: border-box;
font-size: 18px;
line-height: 1.5em;
}
*,
*:before,
*:after {
box-sizing: inherit;
}
body {
background-color: #fafafa;
color: #1c1c1c;
font-family: "Roboto";
-webkit-tap-highlight-color: transparent;
}
/* Navbar */
.navbar-light .navbar-nav .nav-link {
color: #fafafa;
text-transform: uppercase;
font-size: .75rem;
}
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
color: #90DEFF;
}
.navbar-light .navbar-nav .nav-link.btn {
background-color: #90DEFF;
padding-top: .5em;
padding-bottom: .5em;
padding-left: 20px;
padding-right: 20px;
}
/* Card */
.card {
border: 1px solid rgba(0, 0, 0, .125)
}
.card__content {
padding: 1em 20px;
}
.card__header {
position: relative;
overflow: hidden;
padding: 0;
}
.card__status {
position: absolute;
bottom: 0;
left: 0;
padding: .25em .5em;
border-radius: 0 5px 0 0;
color: white;
}
.card__status--unmatched {
background: #AD302A;
}
.card__status--matched {
background: #3BAD67;
}
.card__title {
font-size: 1.2rem;
margin: .5em 0 1em;
}
.card__subtitle {
text-transform: uppercase;
}
.card__img {
width: 100%;
height: 15vw;
min-height: 120px;
object-fit: cover;
}
.card__btn {
background-color: #FFA490 !important;
border-color: #FFA490 !important;
text-transform: uppercase;
font-size: 0.75em;
}