-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.css
64 lines (54 loc) · 910 Bytes
/
app.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
.App-logo {
animation: App-logo-spin infinite 20s linear;
height: 80px;
}
.App-header {
background-color: #222;
height: 150px;
padding: 20px;
color: white;
display: flex;
justify-content: space-between;
}
.App-title {
font-size: 1.5em;
}
.App-intro {
font-size: large;
}
.App-environment-name {
text-transform: capitalize;
}
@keyframes App-logo-spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
/* Login */
.Login-header {
display: flex;
}
.hcp-nav-item {
position: relative;
padding-right: 0.6em;
padding-left: 0.6em;
}
@media only screen and (min-width: 768px) {
.hcp-nav-item:after {
position: absolute;
left: 0;
top: 0.4em;
height: 2em;
content: '';
border-right: 2px solid rgba(0, 0, 0, 0.4);
}
.hcp-nav-item:first-child:after {
display: none;
}
}
.hcp-navbar {
margin-bottom: 1em;
}