-
Notifications
You must be signed in to change notification settings - Fork 15
/
styles.css
105 lines (90 loc) · 1.96 KB
/
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
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
/* CSS */
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');
.listing-links {
margin-top: 10px;
margin-left: 20px;
}
.listing-links .listing-url:first-child {
margin-right: 10px;
}
.source-sans-3-light {
font-family: "Source Sans 3", sans-serif;
font-optical-sizing: auto;
font-weight: 300;
font-style: normal;
}
.button {
text-align: left;
color: #666;
padding: 10px 16px;
padding: 6px 12px;
margin: 0;
display: inline-block;
background-color: #FFFFFF;
border: 1px solid rgba(0, 0, 0, 0.1);
border-radius: .25rem;
box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
box-sizing: border-box;
font-family: "Source Sans 3";
font-size: 12px;
font-weight: 600;
line-height: 1.25;
text-decoration: none;
transition: all 250ms;
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
vertical-align: middle;
}
.button:hover,
.button:focus {
border-color: rgba(0, 0, 0, 0.15);
box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
color: rgba(0, 0, 0, 0.65);
}
.button:hover {
transform: translateY(-1px);
}
.button:active {
background-color: #F0F0F1;
border-color: rgba(0, 0, 0, 0.15);
box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
color: rgba(0, 0, 0, 0.65);
transform: translateY(0);
}
.quarto-title-block .quarto-title-banner {
height: 200px;
display: flex;
align-items: center;
justify-content: left;
}
.quarto-title-block .quarto-title-banner h1 {
margin-left: 130px;
}
.quarto-title-banner {
margin-bottom: -30px;
}
.item-container {
border: 1px solid #ccc;
padding: 0px;
padding-top: 0px;
margin-bottom: 10px;
}
.list-container {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.list-container li {
width: calc(33.33% - 20px);
margin: 0 0 10 10px;
display: inline-block;
white-space: nowrap;
}
.listing-links {
margin-top: 10px;
margin-bottom: 10px;
}
.listing-links a {
margin-top: 5px;
}