-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
51 lines (51 loc) · 1.07 KB
/
style.css
File metadata and controls
51 lines (51 loc) · 1.07 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
.log-card {
transition: all 0.3s ease;
background-color: #ffffff;
border: 1px solid #e5e7eb;
border-radius: 0.75rem;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.log-card:hover {
transform: translateY(-2px);
box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}
.search-highlight {
background-color: #fef08a;
}
.copy-btn {
opacity: 0;
transition: opacity 0.2s ease;
}
.log-card:hover .copy-btn {
opacity: 1;
}
.section-card {
background-color: #ffffff;
border: 1px solid #e5e7eb;
border-radius: 0.75rem;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.code-block {
background-color: #f9fafb;
border: 1px solid #e5e7eb;
border-radius: 0.5rem;
}
.pro-tip {
background-color: #f0f9ff;
border: 1px solid #e0f2fe;
}
.logon-type-card {
transition: all 0.2s ease;
}
.logon-type-card:hover {
background-color: #f8fafc;
}
.provider-tag {
display: inline-block;
padding: 0.25rem 0.5rem;
background-color: #e0f2fe;
color: #0369a1;
border-radius: 0.25rem;
font-size: 0.75rem;
font-family: monospace;
}