-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
96 lines (81 loc) · 1.85 KB
/
Copy pathstyle.css
File metadata and controls
96 lines (81 loc) · 1.85 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
body {
font-family: 'Inter', sans-serif;
background-color: #f9fafb;
color: #111827;
overflow-x: hidden;
-webkit-tap-highlight-color: transparent;
}
.glass-card {
background: rgba(255, 255, 255, 0.8);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
border: 1px solid rgba(0, 0, 0, 0.05);
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}
.action-btn {
background: #ffffff;
border: 1px solid rgba(0, 0, 0, 0.1);
color: #374151;
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.action-btn:hover {
background: #f3f4f6;
border-color: rgba(0, 0, 0, 0.2);
transform: translateY(-1px);
}
.action-btn:active {
transform: translateY(0px);
}
.copy-btn {
background: #111827;
color: #ffffff;
transition: all 0.2s ease;
}
.copy-btn:hover {
background: #374151;
}
::-webkit-scrollbar {
width: 6px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: #cbd5e1;
border-radius: 10px;
}
.notification {
position: fixed;
bottom: 30px;
left: 50%;
transform: translateX(-50%) translateY(100px);
background: #111827;
color: #ffffff;
padding: 14px 28px;
border-radius: 99px;
font-weight: 600;
font-size: 14px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
z-index: 1000;
white-space: nowrap;
}
.notification.show {
transform: translateX(-50%) translateY(0);
}
.input-no-ring:focus {
outline: none;
box-shadow: none;
}
.modal-card {
box-shadow: 0 12px 40px -12px rgba(0, 0, 0, 0.15);
}
#modal-body iframe {
background-color: #ffffff;
color-scheme: light;
}
@media (max-width: 640px) {
.email-display-text {
font-size: 1rem !important;
}
}