-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
52 lines (45 loc) · 909 Bytes
/
Copy pathstyles.css
File metadata and controls
52 lines (45 loc) · 909 Bytes
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
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500&family=Nunito+Sans&display=swap");
.twex p {
font-family: "Nunito Sans", sans-serif;
}
.twex .twex-dialog {
background: #ef5350;
color: #fff;
border-radius: 4px;
display: inline-block;
margin: 1rem;
position: fixed;
width: 400px;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
top: 0;
right: 0;
z-index: 10000000;
padding: 16px;
}
.twex .twex-dialog.hidden {
display: none;
}
.twex h1,
.twex h2,
.twex h3,
.twex h4 {
margin: 0;
font-family: "Montserrat", sans-serif;
}
.twex .secondary {
color: #ffffffaa;
}
.twex a {
text-decoration: none;
}
.twex .btn {
color: #fff;
background: transparent;
outline: 0;
border: 1px solid #ffffff66;
padding: 8px;
border-radius: 4px;
font-size: small;
cursor: pointer;
font-family: "Montserrat", sans-serif;
}