-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathApp.css
More file actions
executable file
·103 lines (93 loc) · 1.98 KB
/
App.css
File metadata and controls
executable file
·103 lines (93 loc) · 1.98 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
.menu-links {
position: absolute;
right: 0;
margin-right: 3em !important;
}
.MuiAppBar-colorPrimary {
background-color: rgb(37, 37, 37) !important;
color: rgb(37, 37, 37);
}
.primary {
background-color: rgb(37, 37, 37) !important;
color: rgb(37, 37, 37);
}
.secondary {
color: rgb(243, 243, 243) !important;
}
.indent {
color: white !important; /* #118851 */
}
.link-items {
padding: 20px;
}
.grid-containers {
padding: 20px;
margin-top: 10px;
margin-bottom: 10px;
}
.route-container {
padding: 20px;
}
.container-text {
padding: 10px;
text-align: center;
}
.number {
font-size: 2.4em;
}
.header-title {
padding-bottom: 10px;
}
.login-container {
max-width: 20em;
margin: 0 auto;
}
/* Underline From Center */
.hvr-underline-from-center {
display: inline-block;
vertical-align: middle;
-webkit-transform: perspective(1px) translateZ(0);
transform: perspective(1px) translateZ(0);
box-shadow: 0 0 1px rgba(0, 0, 0, 0);
position: relative;
overflow: hidden;
}
.hvr-underline-from-center:before {
content: "";
position: absolute;
z-index: -1;
left: 51%;
right: 51%;
bottom: 0;
background: #55c4d3;
height: 4px;
-webkit-transition-property: left, right;
transition-property: left, right;
-webkit-transition-duration: 0.3s;
transition-duration: 0.3s;
-webkit-transition-timing-function: ease-out;
transition-timing-function: ease-out;
}
.hvr-underline-from-center:hover:before,
.hvr-underline-from-center:focus:before,
.hvr-underline-from-center:active:before {
left: 0;
right: 0;
}
.hvr-grow {
display: inline-block;
vertical-align: middle;
-webkit-transform: perspective(1px) translateZ(0);
transform: perspective(1px) translateZ(0);
box-shadow: 0 0 1px rgba(0, 0, 0, 0);
-webkit-transition-duration: 0.3s;
transition-duration: 0.3s;
-webkit-transition-property: transform;
transition-property: transform;
}
.hvr-grow:hover,
.hvr-grow:focus,
.hvr-grow:active {
-webkit-transform: scale(1.1);
transform: scale(1.1);
}