-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommon.css
More file actions
115 lines (101 loc) · 1.97 KB
/
common.css
File metadata and controls
115 lines (101 loc) · 1.97 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
104
105
106
107
108
109
110
111
112
113
114
115
.app-center {
min-height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
}
.app-top {
padding-top: 25px;
min-height: calc(100% - 25px);
}
.bg {
transition: background 0.5s;
}
.navbar {
display: inline-block;
position: fixed;
bottom: 40px;
right: 40px;
border-radius: 10px;
overflow: hidden;
background-color: white;
-webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
-moz-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
z-index: 500;
}
.navbar-icon {
display: inline-block;
line-height: 60px;
height: 60px;
width: 60px;
text-align: center;
font-size: 32px;
border-radius: 10px;
transition: background 0.3s;
cursor: pointer;
text-decoration: none;
position: relative;
}
.navbar-icon:hover {
background-color: #efefef;
transition: background 0.3s;
}
.navbar-icon-active::after {
content: "";
height: 5px;
border-radius: 5px 5px 0 0;
display: block;
position: absolute;
width: 10px;
bottom: 0;
left: 25px;
background-color: #ccc;
transition: background 0.3s;
}
.navbar-icon-active:hover::after {
background: transparent;
transition: background 0.3s;
}
.h1 {
text-align: center;
font-size: 60px;
line-height: 1.5em;
}
.h3 {
text-align: center;
font-weight: 400;
line-height: 2rem;
}
.link {
color: #006b47;
font-weight: 600;
text-decoration: none;
}
.link:hover {
text-decoration: underline;
}
@media screen and (max-width: 550px) {
.h1 {
font-size: 32px;
}
}
.button {
cursor: pointer;
background-color: black;
color: white;
border: none;
font-weight: 700;
padding: 10px 15px;
width: max-content;
border-radius: 5px;
margin: 25px auto;
text-decoration: none;
-webkit-box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.3);
-moz-box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.3);
box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.3);
}
.transparent {
opacity: 0 !important;
transition: opacity 0.3s;
}