-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
103 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
* { | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: border-box; | ||
} | ||
|
||
html { | ||
height: 100%; | ||
/* overflow-y: hidden; | ||
overflow-x: hidden */ | ||
} | ||
|
||
body { | ||
font-family: Consolas, 'Courier New', 'Microsoft YaHei', monospace; | ||
background: radial-gradient(circle at 22% 11%, rgb(57 143 112 / 20%), hsla(0, 0%, 100%, 0) 35%), radial-gradient(circle at 82% 25%, rgb(35 114 177 / 18%), hsla(0, 0%, 100%, 0) 50%), radial-gradient(circle at 25% 61%, rgb(216 122 112 / 28%), hsla(0, 0%, 100%, 0) 71%); | ||
max-width: 50em; | ||
margin: auto; | ||
height: auto; | ||
font-family: Consolas, 'Courier New', 'Microsoft YaHei', monospace; | ||
} | ||
|
||
#title { | ||
text-align: center; | ||
margin-top: 1em; | ||
margin-bottom: 0.5em; | ||
color: rgb(105, 142, 173); | ||
border-bottom: 0px; | ||
} | ||
|
||
#nav { | ||
text-align: center; | ||
} | ||
|
||
h2, h3, h4, h5, h6 { | ||
padding-bottom: 0.3em; | ||
border-bottom: 1px solid #b4cfd7; | ||
} | ||
|
||
p { | ||
margin: 1em; | ||
word-break: break-all; | ||
} | ||
|
||
a { | ||
text-decoration: none; | ||
color: #2f4f4f; | ||
cursor: pointer; | ||
} | ||
|
||
.card { | ||
height: auto; | ||
background-color: aliceblue; | ||
transition: box-shadow 0.2s; | ||
margin: 1em; | ||
border-radius: 1em 1em 1em 1em; | ||
padding: 1.5em; | ||
box-shadow: rgba(50, 50, 93, 0.25) 0px 3px 10px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px; | ||
height: 100%; | ||
border: 1em; | ||
padding-top: 2em; | ||
padding-left: 1em; | ||
padding-right: 1em; | ||
overflow-x: hidden; | ||
overflow-y: auto; | ||
} | ||
|
||
/* .card:hover { | ||
box-shadow: rgba(50, 50, 93, 0.25) 0px 3px 10px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px; | ||
} | ||
img { | ||
height: 8em; | ||
border-radius: 100%; | ||
} */ |