-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.css
111 lines (108 loc) · 2.02 KB
/
default.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
div.services div.motto {
background-image: url('img/wyvern.png');
background-position: top right;
background-size: min(50vw, 330px);
background-repeat: no-repeat;
max-width: 850px;
}
div.ez-clang img.banner {
float: right;
width: min(max(50vw, 150px), 600px);
padding: 5px 0;
}
div.news {
display: flex;
flex-direction: column;
justify-content: center;
margin: min(30px, 5%) auto;
padding-bottom: min(30px, 5%);
}
a.news-item {
display: block;
padding: 10px min(30px, 5%);
margin: 0;
}
a.news-item > div.date {
font-size: 10px;
color: #888;
margin-bottom: 2px;
}
a.news-item > div.text {
margin-bottom: 5px;
padding: 0;
}
div.news-item-spacer {
height: 15px;
}
div.badges span {
font-size: 10px;
font-weight: bold;
padding: 3px 10px;
border-radius: 10px;
color: #fff;
}
div.badges span.contract {
background: rgb(236, 142, 0);
}
div.badges span.clang {
background: rgb(229, 111, 211);
}
div.badges span.llvm {
background: rgb(231, 83, 83);
}
div.badges span.bugfix {
background: rgb(7, 195, 0);
}
div.badges span.windows {
background: rgb(28, 127, 238);
}
div.badges span.program-verification {
background: rgb(0, 189, 186);
}
a.news-item:link {
text-decoration: none;
color: #1A1818;
}
a.news-item:visited {
text-decoration: none;
color: #1A1818;
}
a.news-item:hover {
text-decoration: none;
background: #d8d8d844;
color: #1A1818;
}
a.news-item:active {
text-decoration: none;
background: #d8d8d844;
color: #1A1818;
}
a.news-item a:hover .link {
text-decoration: underline;
color: #0c72a1;
}
a.news-item a:active .link {
text-decoration: underline;
color: #0c72a1;
}
div.contact > div {
display: flex;
flex-direction: row;
align-items: center;
}
div.contact > div > div {
display: flex;
flex-direction: column;
justify-content: left;
}
div.contact > div > img {
width: 6em;
height: 6em;
margin: 0 1em 0 0;
border-radius: 3em;
margin-left: min(30px, 5%);
}
div.imprint div.content {
padding-left: min(30px, 5%);
padding-right: min(30px, 5%);
}