+ Change title font to Noto Sans + Add materialized design for commit message boxpull/1161/head
@@ -261,3 +261,41 @@ select { | |||||
background-color: #3b3b3b; | background-color: #3b3b3b; | ||||
border-color: #2e2e2e; | border-color: #2e2e2e; | ||||
} | } | ||||
/* | |||||
Following code regarding collapse container are fetched | |||||
or modified from the Materialize project. | |||||
The MIT License (MIT) | |||||
Copyright (c) 2014-2018 Materialize | |||||
https://github.com/Dogfalo/materialize | |||||
*/ | |||||
/* all collapse container */ | |||||
.collapse-container.last-modified { | |||||
-webkit-box-shadow: 0 2px 2px 0 rgba(50, 50, 50, 0.64), 0 3px 1px -2px rgba(50, 50, 50, 0.62), 0 1px 5px 0 rgba(50, 50, 50, 0.7); | |||||
box-shadow: 0 2px 2px 0 rgba(50, 50, 50, 0.64), 0 3px 1px -2px rgba(50, 50, 50, 0.62), 0 1px 5px 0 rgba(50, 50, 50, 0.7); | |||||
border-top: 1px solid rgba(96, 96, 96, 0.7); | |||||
border-right: 1px solid rgba(96, 96, 96, 0.7); | |||||
border-left: 1px solid rgba(96, 96, 96, 0.7); | |||||
} | |||||
/* header */ | |||||
.collapse-container.last-modified>:nth-child(odd) { | |||||
background-color: #3f3f3f; | |||||
border-bottom: 1px solid rgba(96, 96, 96, 0.7); | |||||
} | |||||
/* body */ | |||||
.collapse-container.last-modified>:nth-child(even) { | |||||
border-bottom: 1px solid rgba(96, 96, 96, 0.7); | |||||
background-color: inherit; | |||||
} | |||||
span.arrow-d{ | |||||
border-top: 5px solid white | |||||
} | |||||
span.arrow-r{ | |||||
border-left: 5px solid white | |||||
} |
@@ -54,3 +54,40 @@ select { | |||||
background-color: #fcfcfc; | background-color: #fcfcfc; | ||||
border-color: #aeb1b5; | border-color: #aeb1b5; | ||||
} | } | ||||
/* | |||||
Following code regarding collapse container are fetched | |||||
or modified from the Materialize project. | |||||
The MIT License (MIT) | |||||
Copyright (c) 2014-2018 Materialize | |||||
https://github.com/Dogfalo/materialize | |||||
*/ | |||||
/* all collapse container */ | |||||
.collapse-container.last-modified { | |||||
-webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2); | |||||
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2); | |||||
border-top: 1px solid #ddd; | |||||
border-right: 1px solid #ddd; | |||||
border-left: 1px solid #ddd; | |||||
} | |||||
/* header */ | |||||
.collapse-container.last-modified>:nth-child(odd) { | |||||
background-color: #fff; | |||||
border-bottom: 1px solid #ddd; | |||||
} | |||||
/* body */ | |||||
.collapse-container.last-modified>:nth-child(even) { | |||||
border-bottom: 1px solid #ddd; | |||||
} | |||||
span.arrow-d{ | |||||
border-top: 5px solid black | |||||
} | |||||
span.arrow-r{ | |||||
border-left: 5px solid black | |||||
} |
@@ -1,4 +1,4 @@ | |||||
@import url('https://fonts.googleapis.com/css?family=Titillium+Web'); | |||||
@import url('https://fonts.googleapis.com/css?family=Titillium+Web|Noto+Sans'); | |||||
html, | html, | ||||
body { | body { | ||||
font-family: 'Titillium Web', 'Segoe UI', Tahoma, Helvetica, sans-serif; | font-family: 'Titillium Web', 'Segoe UI', Tahoma, Helvetica, sans-serif; | ||||
@@ -25,6 +25,7 @@ h3, | |||||
h4, | h4, | ||||
h5, | h5, | ||||
h6 { | h6 { | ||||
font-family: 'Noto Sans', Verdana, Geneva, Tahoma, sans-serif; | |||||
line-height: 130%; | line-height: 130%; | ||||
} | } | ||||
@@ -63,3 +64,43 @@ select { | |||||
background-size: 5px 5px, 5px 6px; | background-size: 5px 5px, 5px 6px; | ||||
background-repeat: no-repeat; | background-repeat: no-repeat; | ||||
} | } | ||||
/* | |||||
Following code regarding collapse container are fetched | |||||
or modified from the Materialize project. | |||||
The MIT License (MIT) | |||||
Copyright (c) 2014-2018 Materialize | |||||
https://github.com/Dogfalo/materialize | |||||
*/ | |||||
/* all collapse container */ | |||||
.collapse-container.last-modified { | |||||
margin: 0.5rem 0 1rem 0; | |||||
} | |||||
/* header */ | |||||
.collapse-container.last-modified>:nth-child(odd):focus { | |||||
outline: 0; | |||||
} | |||||
.collapse-container.last-modified>:nth-child(odd) { | |||||
display: -webkit-box; | |||||
display: -webkit-flex; | |||||
display: -ms-flexbox; | |||||
display: flex; | |||||
cursor: pointer; | |||||
-webkit-tap-highlight-color: transparent; | |||||
line-height: 1.5; | |||||
padding: 0.75rem; | |||||
background-image:none; | |||||
border: 0px; | |||||
} | |||||
/* body */ | |||||
.collapse-container.last-modified>:nth-child(even) { | |||||
display: none; | |||||
-webkit-box-sizing: border-box; | |||||
box-sizing: border-box; | |||||
padding: 1rem; | |||||
border: 0px; | |||||
} |