-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
95 lines (80 loc) · 1.62 KB
/
styles.css
File metadata and controls
95 lines (80 loc) · 1.62 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
h1, .h1 {
border-top: 60px solid transparent;
border-bottom: 20px solid transparent;
}
h2, .h2, h3, .h3 {
border-top: 50px solid transparent;
border-bottom: 20px solid transparent;
}
h4, .h4 {
border-top: 20px solid transparent;
border-bottom: 10px solid transparent;
}
.title.toc-ignore {
border-bottom: 0px solid transparent;
}
.contributors .col-md-3 {
padding: 30px;
text-align: center;
font-size: 20px;
}
.contributors .col-md-3 img{
width: 150px;
height: 150px;
display: block;
margin-bottom: 2em;
margin-left: auto;
margin-right: auto;
}
.icon-grid {
display: grid !important;
/*grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)) !important;*/
grid-template-columns: repeat(5, 1fr) !important;
gap: 10px !important;
justify-items: center !important;
align-items: center !important;
/*max-width: 100%;*/
/*margin: 0 auto;*/
}
.icon-grid a img {
width: 90%;
max-width: 150px;
height: auto;
display: block;
transition: transform .25s ease;
}
.icon-grid a img:hover {
transform:scale(1.1);
}
/*.icon-grid a {
display: block;
}*/
/*.icon-grid img {
width: 90%;
max-width: 120px;
aspect-ratio: 1 / 1;
object-fit: cover;
transition:transform .25s ease;
display: block;
margin-bottom: 2em;
}
.icon-grid img hover {
transform:scale(1.1);
}
.icon-grid .row {
display: flex;
flex-wrap: wrap;
gap: 10px;
padding-left: 10px;
padding-right: 10px;
}
.icon-grid .col-sm-2 img:hover {
transform:scale(1.1);
}
.icon-grid .col-sm-2 img {
height: 90%;
width: 90%;
transition:transform .25s ease;
display: block;
margin-bottom: 2em;
}*/