blob: 84fe43800babbb4813354e29ca62b535b943088c (
plain)
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
|
ul.studygroup-gallery {
list-style: none;
padding-left: 15px;
li {
box-sizing: border-box;
vertical-align: top;
text-align: center;
margin: 5px;
width: 120px;
height: 150px;
max-height: 150px;
overflow: hidden;
display: inline-blocK;
section {
margin: 0 auto;
}
}
}
.studygroupmemberlist {
.member-avatar {
position: relative;
img {
margin-right: 5px;
}
}
.new-member .member-avatar {
.icon('after', 'star', 'new', 12);
&::after {
position: absolute;
margin: -1px 0 0 -14px;
}
}
tr > .actions {
text-align: right;
white-space: nowrap;
}
}
.studygroup-browse {
td.studygroup-title {
a {
display: block;
max-width: 40em;
min-width: 15em;
}
}
}
|