-
Notifications
You must be signed in to change notification settings - Fork 1
/
seminars.css
85 lines (72 loc) · 1.67 KB
/
seminars.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
h1.title {
position: relative;
}
h1.title {
margin-right: 100px;
}
h1.title.hpi::after {
display: inline-block;
background-repeat:no-repeat;
position: absolute;
right: -90px;
top: -10px;
content:"";
background-image: url(https://lively-kernel.org/lively4/lively4-seminars/hpi_logo_text.png);
background-size: 100px;
width: 100px;
height: 80px;
}
/* after will override after ... so we can do two logos that way? #Hack */
h1.title.lively4::before {
display: inline-block;
background-repeat:no-repeat;
position: absolute;
right: 20px;
top: -10px;
content:"";
background-image: url(https://lively-kernel.org/lively4/lively4-seminars/PX2018/media/lively4_logo.png);
background-size: 100px;
width: 100px;
height: 80px;
}
.thumb {
width: 300px
}
li.project {
border: 2px solid lightgray;
width: 300px;
height: 250px;
float: left;
margin: 10px;
list-style-type: none;
font-size: 14pt;
overflow: hidden;
text-align: center;
padding: 10px;
}
h1, h2, h3, h4, p {
clear: left;
}
li.lively4, li.squeak {
position: relative;
}
li.lively4::before, li.squeak::before {
display: inline-block;
background-repeat:no-repeat;
position: absolute;
right: 0px;
bottom: 0px;
content:"";
}
li.lively4::before {
background-image: url(https://lively-kernel.org/lively4/lively4-seminars/PX2018/media/lively4_logo.png);
background-size: 60px;
width: 60px;
height: 40px;
}
li.squeak::before {
background-image: url(https://lively-kernel.org/lively4/lively4-seminars/PX2018/media/smalltalk_logo.png);
background-size: 60px;
width: 60px;
height: 60px;
}