This repository was archived by the owner on Feb 5, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathApp.scss
More file actions
85 lines (72 loc) · 1.19 KB
/
App.scss
File metadata and controls
85 lines (72 loc) · 1.19 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
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
/**
Third Party / Dependency imports here
*/
$font-path: './fonts/';
$img-path: './img/';
$icon-font-path: './fonts/';
/**
Patternfly Sass
*/
@import 'patternfly';
/**
Patternfly React Specific Sass Extensions
*/
@import 'patternfly-react';
/**
Application Overrides
*/
//override navbar-default from React Boostrap NavBar
.navbar-default .navbar-toggle {
&:focus,
&:hover {
background-color: transparent;
}
}
.breadcrumb {
margin-bottom: 10px;
}
// .navbar-pf-vertical {
// .nav .nav-item-iconic > .pficon-user {
// padding-right: 7px;
// }
// }
a:hover,
a:focus {
text-decoration: none;
}
.pficon.pficon-info.form-pficon-info {
color: #1589cb;
font-size: 15px;
padding-left: 10px;
vertical-align: middle;
}
.App-body {
text-align: center;
}
.App-intro {
background-color: #222;
height: 180px;
padding: 20px;
color: white;
text-align: center;
}
.App-logo {
animation: App-logo-spin infinite 20s linear;
height: 80px;
}
.App-paragraph {
font-size: large;
margin: 20px 0;
}
@keyframes App-logo-spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
.NotFound {
padding-top: 100px;
text-align: center;
}