forked from gofair-foundation/gofair-wiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
65 lines (48 loc) · 810 Bytes
/
styles.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
@media (max-width: 575px) {
.link-cards .card {
margin-bottom: 20px;
margin-right: 35px;
}
}
@media (min-width: 576px) {
.link-cards {
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.link-cards .card {
width: 190px;
margin: 0 20px 12px 0;
}
}
.link-cards .card {
border: none;
padding: 0;
}
.link-cards .card-title h4 {
margin-top: 0;
}
.link-cards .card-title p {
margin-bottom: 0;
}
.link-cards .card-subtitle {
margin-bottom: 0.7rem;
}
.link-cards .card-body {
padding: 0.5rem;
padding-left: 0.1rem;
}
.link-cards .card-body ul {
margin-bottom: 0;
padding-left: 0;
list-style-type: none;
}
.link-cards .card-body ul a {
text-decoration: none;
}
.link-cards .card-body ul li {
padding-bottom: 0.2rem;
}
.card .source-code {
margin-top: 3px;
}