prepared file upload
This commit is contained in:
@ -1,28 +1,38 @@
|
||||
@font-face {
|
||||
font-family: 'Cabin Sketch';
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
font-display: swap;
|
||||
src: url('../fonts/Cabin-Sketch-700.eot'); /* IE9 */
|
||||
src: url('../fonts/Cabin-Sketch-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
|
||||
url('../fonts/Cabin-Sketch-700.woff2') format('woff2'), /* Modern Browsers */
|
||||
url('../fonts/Cabin-Sketch-700.woff') format('woff'), /* Modern Browsers */
|
||||
url('../fonts/Cabin-Sketch-700.ttf') format('truetype'), /* Safari, Android, iOS */
|
||||
url('../fonts/Cabin-Sketch-700.svg#CabinSketch') format('svg'); /* Legacy iOS */
|
||||
font-family: 'Cabin Sketch';
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
font-display: swap;
|
||||
src: url('../fonts/Cabin-Sketch-700.eot'); /* IE9 */
|
||||
src: url('../fonts/Cabin-Sketch-700.eot?#iefix')
|
||||
format('embedded-opentype'), /* IE6-IE8 */
|
||||
url('../fonts/Cabin-Sketch-700.woff2') format('woff2'),
|
||||
/* Modern Browsers */
|
||||
url('../fonts/Cabin-Sketch-700.woff') format('woff'),
|
||||
/* Modern Browsers */
|
||||
url('../fonts/Cabin-Sketch-700.ttf') format('truetype'),
|
||||
/* Safari, Android, iOS */
|
||||
url('../fonts/Cabin-Sketch-700.svg#CabinSketch') format('svg');
|
||||
/* Legacy iOS */
|
||||
}
|
||||
|
||||
/* fira-sans-regular - latin */
|
||||
@font-face {
|
||||
font-family: 'Fira Sans';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url('../fonts/fira-sans-v16-latin-regular.eot'); /* IE9 Compat Modes */
|
||||
src: local(''),
|
||||
url('../fonts/fira-sans-v16-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
|
||||
url('../fonts/fira-sans-v16-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
|
||||
url('../fonts/fira-sans-v16-latin-regular.woff') format('woff'), /* Modern Browsers */
|
||||
url('../fonts/fira-sans-v16-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
|
||||
url('../fonts/fira-sans-v16-latin-regular.svg#FiraSans') format('svg'); /* Legacy iOS */
|
||||
font-family: 'Fira Sans';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url('../fonts/fira-sans-v16-latin-regular.eot');
|
||||
/* IE9 Compat Modes */
|
||||
src: local(''), url('../fonts/fira-sans-v16-latin-regular.eot?#iefix')
|
||||
format('embedded-opentype'), /* IE6-IE8 */
|
||||
url('../fonts/fira-sans-v16-latin-regular.woff2') format('woff2'),
|
||||
/* Super Modern Browsers */
|
||||
url('../fonts/fira-sans-v16-latin-regular.woff') format('woff'),
|
||||
/* Modern Browsers */
|
||||
url('../fonts/fira-sans-v16-latin-regular.ttf')
|
||||
format('truetype'), /* Safari, Android, iOS */
|
||||
url('../fonts/fira-sans-v16-latin-regular.svg#FiraSans')
|
||||
format('svg'); /* Legacy iOS */
|
||||
}
|
||||
|
||||
html {
|
||||
@ -34,6 +44,11 @@ body {
|
||||
background-image: url('../images/background.jpg');
|
||||
}
|
||||
|
||||
.navbar-background {
|
||||
background-image: url('../images/background.jpg');
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
a {
|
||||
font-family: 'Fira Sans';
|
||||
}
|
||||
@ -96,19 +111,23 @@ div {
|
||||
}
|
||||
|
||||
.acc_over {
|
||||
background-image: linear-gradient(to bottom right, #ccc, #aaa) !important;
|
||||
background-image: linear-gradient(to bottom right, #ccc, #aaa)
|
||||
!important;
|
||||
}
|
||||
|
||||
.acc_true {
|
||||
background-image: linear-gradient(to bottom right, #cfc, #afa) !important;
|
||||
background-image: linear-gradient(to bottom right, #cfc, #afa)
|
||||
!important;
|
||||
}
|
||||
|
||||
.acc_false {
|
||||
background-image: linear-gradient(to bottom right, #fcc, #faa) !important;
|
||||
background-image: linear-gradient(to bottom right, #fcc, #faa)
|
||||
!important;
|
||||
}
|
||||
|
||||
.acc_null {
|
||||
background-image: linear-gradient(to bottom right, #fdb, #fca) !important;
|
||||
background-image: linear-gradient(to bottom right, #fdb, #fca)
|
||||
!important;
|
||||
}
|
||||
|
||||
.right-dist {
|
||||
@ -183,7 +202,7 @@ div {
|
||||
background: transparent;
|
||||
border: 2px solid transparent;
|
||||
padding: 8px;
|
||||
font-family: 'Cabin Sketch';
|
||||
font-family: 'Cabin Sketch';
|
||||
}
|
||||
|
||||
.linkbtn:hover {
|
||||
@ -360,3 +379,19 @@ div {
|
||||
text-align: center;
|
||||
padding-top: 45vh;
|
||||
}
|
||||
|
||||
.roleflag {
|
||||
border-radius: 24px;
|
||||
border: 1px solid gray;
|
||||
padding: 4px;
|
||||
margin: 2px;
|
||||
background-image: linear-gradient(to right bottom, silver, white);
|
||||
}
|
||||
|
||||
.tablebox {
|
||||
margin: 8px;
|
||||
background-color: rgba(255, 255, 255, 0.5) !important;
|
||||
padding: 6px;
|
||||
border-radius: 8px;
|
||||
border: 1px solid gray;
|
||||
}
|
Reference in New Issue
Block a user