forked from CDCgov/opencdc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_code.scss
97 lines (85 loc) · 1.5 KB
/
_code.scss
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
$code-border-color: #979797;
section.project {
.section-header {
h2 {
color: #205493;
}
img.section-image {
position: absolute;
margin: -30px 0 0 10px;
height: 80px;
}
p {
color: #777;
}
hr {
border: 0;
height: 1px;
background-color: $code-border-color;
}
}
.repos {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin: 0;
.repo {
border: 1px solid #e6e6e6;
background-color: #f5f5f5;
margin: 20px 0;
padding: 20px;
flex: 1;
min-width: 48%;
max-width: 48%;
a {
color: #555;
font-weight: bold;
text-decoration: none;
&:hover {
color: #777;
}
}
.docker-image {
img {
height: 25px;
}
&:hover {
img {
opacity: 0.8;
}
}
}
.resources {
padding: 0.5rem 0;
}
.resources, .tags, .license {
font-size: 0.85em;
}
.license {
color: #777;
text-align: right;
}
h3 {
border: 1px solid $code-border-color;
padding: 10px;
display: inline-block;
color: inherit;
font-size: 1rem;
margin: 0 0 10px 0;
}
p {
color: #7E7E7E;
}
}
}
}
@media (max-width: 1400px) {
section.project {
.repos {
.repo {
min-width: 100%;
max-width: 100%;
}
}
}
}