blob: 5c032cd0e6d7981a2a68ca443dcaadc27e7ab07e (
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
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
|
.plus {
.element_header {
display: inline-block;
width: 250px;
margin-left: 5px;
}
.element_description {
display: inline-block;
margin-left: 20px;
}
.shortdesc {
margin-left: 3px;
}
.plus_expert {
margin-left: 20px;
width: 97%;
display: flex;
flex-wrap: wrap;
}
.screenshot_holder {
width: 250px;
flex: 0 250px;
margin-right: 5mm;
box-sizing: border-box;
}
.big_thumb {
max-width: 250px;
max-height: 250px;
padding-top: 5mm;
}
.small_thumb {
margin-left: 2px;
margin-top: 5px;
max-height: 25px;
}
.thumb_holder {
width: 250px;
text-align: center;
background-color: $content-color-20;
border-top: 1px solid mix($brand-color-lighter, $white, 80%);
border-bottom: 1px solid mix($brand-color-lighter, $white, 80%);
}
.descriptionbox {
flex: 1 305px;
max-width: 45em;
}
.keywords {
padding: 5mm;
left: 5mm;
position: relative;
}
.longdesc {
overflow: hidden;
}
.helplink {
float: right;
}
article.studip > section:not(:last-child) {
border-bottom: 1px solid $table-header-color;
}
}
|