mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-08-17 02:20:35 +00:00
fix(docs): correct header selector for Cayman theme
.page-header not .header — Cayman uses page-header class. Also override heading colors to match dark theme.
This commit is contained in:
parent
b46497080e
commit
e388008765
1 changed files with 18 additions and 6 deletions
|
|
@ -55,24 +55,36 @@ body {
|
||||||
background-color: #f0f4f8;
|
background-color: #f0f4f8;
|
||||||
}
|
}
|
||||||
|
|
||||||
.header {
|
.page-header {
|
||||||
background: linear-gradient(120deg, #2d3436, #636e72);
|
background-color: #2d3436;
|
||||||
|
background-image: linear-gradient(120deg, #2d3436, #636e72);
|
||||||
color: #dfe6e9;
|
color: #dfe6e9;
|
||||||
}
|
}
|
||||||
|
|
||||||
.project-name {
|
.page-header .project-name {
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
}
|
}
|
||||||
|
|
||||||
.project-tagline {
|
.page-header .project-tagline {
|
||||||
color: #b2bec3;
|
color: #b2bec3;
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn {
|
.page-header .btn {
|
||||||
background-color: #0984e3;
|
background-color: #0984e3;
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
|
border-color: rgba(255,255,255,0.2);
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn:hover {
|
.page-header .btn:hover {
|
||||||
background-color: #74b9ff;
|
background-color: #74b9ff;
|
||||||
|
border-color: rgba(255,255,255,0.3);
|
||||||
|
}
|
||||||
|
|
||||||
|
.main-content h1,
|
||||||
|
.main-content h2,
|
||||||
|
.main-content h3,
|
||||||
|
.main-content h4,
|
||||||
|
.main-content h5,
|
||||||
|
.main-content h6 {
|
||||||
|
color: #2d3436;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue