-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy paththeme.css
More file actions
51 lines (43 loc) · 1.14 KB
/
theme.css
File metadata and controls
51 lines (43 loc) · 1.14 KB
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
:root {
--pf-global--primary-color--100: #e2baff;
--pf-global--primary-color--200: #e2baff;
--pf-global--primary-color--dark-100: #e2baff;
--pf-global--Color--light-100: #20434f;
}
@font-face {
font-family: OpenCloud;
src: url('../fonts/OpenCloud500-Regular.woff2') format('woff2');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: OpenCloud;
src: url('../fonts/OpenCloud750-Bold.woff2') format('woff2');
font-weight: bold;
font-style: normal;
}
body {
font-family: "OpenCloud", "Open Sans", Helvetica, Arial, sans-serif;
background: url(../img/background.png) no-repeat center !important;
background-size: cover !important;
}
.kc-logo-text {
background-image: url(../img/logo.svg) !important;
background-size: contain;
background-position: center;
}
#kc-header-wrapper {
display: flex;
justify-content: center;
}
@media (max-width: 767px) {
#kc-header-wrapper {
padding: 20px 60px 0;
}
}
.pf-c-button.pf-m-secondary {
color: var(--pf-global--Color--light-100) !important;
}
.kc-margin-top {
margin-top: var(--pf-global--spacer--sm);
}