5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-02 05:11:29 +08:00
This commit is contained in:
Lea Anthony 2019-02-04 19:31:37 +11:00
parent d6c5586159
commit 2c28a8f550
No known key found for this signature in database
GPG Key ID: 33DAF7BB90A58405
2 changed files with 27 additions and 25 deletions

View File

@ -12,8 +12,8 @@ html {
overflow: hidden;
/* https://leaverou.github.io/css3patterns/#carbon */
background: linear-gradient(27deg, #151515 5px, transparent 5px) 0 5px,
linear-gradient(207deg, #151515 5px, transparent 5px) 10px 0px,
linear-gradient(27deg, #222 5px, transparent 5px) 0px 10px,
linear-gradient(207deg, #151515 5px, transparent 5px) 10px 0,
linear-gradient(27deg, #222 5px, transparent 5px) 0 10px,
linear-gradient(207deg, #222 5px, transparent 5px) 10px 5px,
linear-gradient(90deg, #1b1b1b 10px, transparent 10px),
linear-gradient(
@ -46,10 +46,8 @@ html {
format("woff2"),
/* Super Modern Browsers */
url("../fonts/roboto/roboto-v18-latin-regular.woff") format("woff"),
/* Modern Browsers */
url("../fonts/roboto/roboto-v18-latin-regular.ttf")
/* Modern Browsers */ url("../fonts/roboto/roboto-v18-latin-regular.ttf")
format("truetype"),
/* Safari, Android, iOS */
url("../fonts/roboto/roboto-v18-latin-regular.svg#Roboto")
format("svg"); /* Legacy iOS */
url("../fonts/roboto/roboto-v18-latin-regular.svg#Roboto") format("svg"); /* Legacy iOS */
}

View File

@ -18,8 +18,12 @@ body {
border-color: #117;
}
p { margin-bottom: 1.5em; }
p:last-child { margin-bottom: 0; }
p {
margin-bottom: 1.5em;
}
p:last-child {
margin-bottom: 0;
}
blockquote {
display: block;
@ -32,9 +36,9 @@ blockquote {
color: #117;
}
blockquote:before {
content: '\201C';
content: "\201C";
position: absolute;
top: 0em;
top: 0;
left: 50%;
transform: translate(-50%, -50%);
background: #fff;
@ -61,7 +65,7 @@ button {
border-radius: 0.12em;
box-sizing: border-box;
text-decoration: none;
font-family:'Roboto',sans-serif;
font-family: "Roboto", sans-serif;
font-weight: 300;
font-size: 1em;
color: #000;
@ -69,7 +73,7 @@ button {
transition: all 0.2s;
}
button:hover {
color:#FFF;
color: #fff;
background-color: #000;
cursor: pointer;
}