-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
169 lines (144 loc) · 2.73 KB
/
style.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
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
@font-face {
font-family: fakt-web;
src: url(https://cdn.auth0.com/styleguide/core/2.0.1/fonts/fakt/FaktPro-Normal.woff2);
}
* {
box-sizing: border-box;
}
body {
font-family: fakt-web, Helvetica Neue, Hevetica, sans-serif;
color: #333c4d;
background: linear-gradient(145deg, #3885ff 0%, #3ed6eb 100%);
display: flex;
justify-content: center;
align-items: stretch;
min-height: 98vh;
}
h1 {
font-style: normal;
font-weight: normal;
font-size: 24px;
line-height: 32px;
}
p {
font-style: normal;
font-weight: 500;
font-size: 16px;
line-height: 24px;
letter-spacing: 0.2px;
}
.navigation {
width: 100%;
padding-inline-start: 125px;
padding-inline-end: 125px;
position: absolute;
top: 0;
display: flex;
flex-flow: row wrap;
align-items: center;
justify-content: flex-end;
list-style: none;
margin: 0;
background: #333c4d;
}
li.spacer {
flex-grow: 1;
}
li.logo {
text-align: left;
}
li.logo img {
height: 40px;
}
.navigation a {
text-decoration: none;
display: block;
padding: 1em;
color: white;
}
.navigation li.profile {
padding-top: 5px;
padding-right: 5px;
margin-right: 10px;
}
.navigation li.profile img {
height: 40px;
border-radius: 20px;
}
.content {
background: white;
width: 80%;
padding: 60px;
padding-top: 10px;
border-radius: 3px;
box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.12),
0px 3px 8px rgba(0, 0, 0, 0.0379303);
margin-top: 70px;
margin-bottom: 45px;
}
.token-set {
display: flex;
flex-flow: row nowrap;
align-items: center;
list-style: none;
margin: 0;
margin-bottom: 16px;
padding-left: 0;
}
.token-set h4 {
margin: 0;
}
.dropbtn {
cursor: pointer;
}
.dropdown {
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.12),
0px 3px 8px rgba(0, 0, 0, 0.0379303);
border-radius: 3px;
z-index: 1;
animation: scaleZ 300ms ease-in-out forwards;
transform-origin: top left;
}
@keyframes scaleZ {
0% {
opacity: 0;
transform: scale(0);
}
80% {
transform: scale(1.07);
}
100% {
opacity: 1;
transform: scale(1);
}
}
/* Links inside the dropdown */
.dropdown-content a {
padding: 12px 16px;
text-decoration: none;
display: block;
}
.dropdown-content a img {
padding-top: 5px;
padding-right: 10px;
}
/* Change color of dropdown links on hover */
.dropdown-content a:hover {
background-color: #f1f1f1;
}
/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
display: block;
}
/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
background-color: #f1f1f1;
}