generated from mintlify/starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
85 lines (71 loc) · 1.56 KB
/
styles.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
/* Global styles */
#topbar-cta-button span {
font-weight: bold;
}
.documentation-link {
color: #1c17ff;
text-decoration: none;
}
.documentation-link:hover {
color: #000000; /* Black color when hovering */
}
.custom-button {
display: inline-block;
padding: 2px 8px;
background-color: #f1f1f1;
color: #333; /* Text color */
border: 1px solid #aaa; /* Border color */
border-radius: 25px; /* Rounded borders */
text-align: center;
user-select: none;
transition: background-color 0.3s ease; /* Smooth transition for background color */
}
/* Change the button color on hover (make it unclickable) */
.custom-button:hover {
background-color: #1c17ff;
color: #f1f1f1;
}
/* Adjust the width for the second column */
td:nth-child(2) {
width: 200px; /* Adjust the width as per your requirement */
}
/*
Add an announcement bar
TODO: Figure out how to make this versions-specific.
*/
/* #navbar:before {
background-color: #ff4c04;
content: "This API is currently in beta. If you'd like to request access, contact our Support Team";
color: rgb(255, 255, 255);
display: block;
text-align: center;
padding: 6px;
font-size: 90%;
} */
#navbar {
background: white;
border-bottom: 1px solid #e2e5e7;
}
#content-container {
margin-top: 2rem;
}
#sidebar {
left: 0rem;
padding-left: 4rem;
background: white;
border-right: 1px solid #e2e5e7;
}
.card {
border-radius: 4px;
}
.eyebrow {
text-transform: uppercase;
font-weight: 400;
color: #121142;
}
#search-bar-entry {
border-radius: 4px;
}
#navbar .max-w-8xl {
max-width: 100%;
}