-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
107 lines (97 loc) · 3.06 KB
/
styles.css
File metadata and controls
107 lines (97 loc) · 3.06 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
.code-helper-btn {
background-color: #f4f1de !important;
color: #3d405b !important;
margin: 10px 10px;
padding: 10px 14px !important;
font-size: 12px !important;
font-weight: 500 !important;
cursor: pointer !important;
border: 2px solid #81b29a !important;
font-family: "Inter", system-ui, sans-serif !important;
text-transform: uppercase !important;
transition: all 0.3s ease !important;
display: inline-block !important;
border-radius: 8px !important;
position: relative !important;
width: max-content !important;
letter-spacing: 0.5px !important;
}
.code-helper-btn:hover {
background-color: #2d5a4c !important;
border-color: #2d5a4c !important;
color: #f4f1de !important;
}
.code-helper-btn:active {
background-color: #6b9580 !important;
transform: translateY(1px) !important;
}
.code-helper-btn:disabled {
background-color: #e5e5e5 !important;
border-color: #cccccc !important;
color: #999999 !important;
cursor: not-allowed !important;
opacity: 0.7 !important;
}
.code-helper-container {
margin: 16px 0 !important;
/* padding: 14px !important; */
width: 100% !important;
box-sizing: border-box !important;
display: flex !important;
flex-direction: column !important;
align-items: left !important;
border: 1px solid #81b29a !important;
background-color: #fdfcf7 !important;
border-radius: 12px !important;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
overflow: hidden;
}
.code-helper-explanation {
/* margin-top: 24px !important; */
padding: 20px !important;
background-color: #fffcf0 !important;
font-family: "Inter", system-ui, sans-serif !important;
font-size: 15px !important;
line-height: 1.7 !important;
color: #222331 !important;
white-space: pre-wrap !important;
/* border-radius: 8px !important; */
max-width: 100% !important;
text-align: left !important;
border-top: 1px solid rgba(129, 178, 154, 0.2) !important;
}
.code-helper-explanation code.inline-code {
background-color: rgba(129, 178, 154, 0.1) !important;
color: #35384d !important;
font-family: "Menlo", "Monaco", "Courier New", monospace !important;
font-size: 15px !important;
padding: 2px 6px !important;
border-radius: 4px !important;
margin: 0 !important;
display: inline !important;
white-space: pre-wrap !important;
border: 1px solid rgba(129, 178, 154, 0.2) !important;
}
.code-helper-toggle-btn {
display: flex !important;
align-items: center !important;
justify-content: center !important;
width: 32px !important;
height: 32px !important;
padding: 4px !important;
border: none !important;
background-color: transparent !important;
cursor: pointer !important;
transition: transform 0.3s ease !important;
color: #81b29a !important;
}
.code-helper-toggle-btn:hover {
color: #6b9580 !important;
}
.code-helper-toggle-btn svg {
width: 20px !important;
height: 20px !important;
}
.code-helper-container {
position: relative !important;
}