blob: f1d65e24ef50f44c4a6672a17b4cd8f6f952c813 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
.vierkant {
margin: var(--spacing-small);
display: inline-block;
position: relative;
box-sizing: border-box;
}
.fullwidth { width: calc(100% - var(--spacing-medium)); }
.button {
background-color: var(--accent);
color: var(--gray-900);
text-align: center;
cursor: pointer;
position: relative;
text-decoration: none;
display: block;
user-select: none;
font-weight: 600;
}
|