-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.css
56 lines (47 loc) · 1.02 KB
/
index.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
.k-block-type-link-button .button-container {
display: flex;
flex: 1;
}
.k-block-type-link-button .button-link {
border: 0;
background-color: #12b27f;
font-weight: bold;
font-family: "Raleway", sans-serif;
color: white;
text-align: center;
display: inline-flex;
align-items: center;
justify-content: center;
}
.k-block-type-link-button .button-icon {
box-sizing: content-box;
display: flex;
height: 100%;
background-color: rgba(255,255,255,0.25);
padding: 0.75em 1em;
align-items: center;
}
.k-block-type-link-button .button-icon svg {
height: 1.5em;
width: 1.5em;
}
.k-block-type-link-button .button-content {
flex: 1;
line-height: 1.5em;
padding: 0.75em 2em;
}
.k-block-type-link-button .full-width {
flex: 1;
}
.k-block-type-link-button .left-align {
justify-content: start;
}
.k-block-type-link-button .center-align {
justify-content: center;
}
.k-block-type-link-button .right-align {
justify-content: end;
}
.k-block-type-link-button .reverse {
flex-direction: row-reverse;
}