Startpunkten
BIN
wwwroot/LogoOrginal.png
Normal file
|
After Width: | Height: | Size: 13 KiB |
124
wwwroot/css/crille.css
Normal file
@@ -0,0 +1,124 @@
|
||||
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&family=Oswald&display=swap');
|
||||
|
||||
:root {
|
||||
--LogoMainColor: #f6be00;
|
||||
--LogoSecondColor: #4f3e07;
|
||||
}
|
||||
|
||||
|
||||
body {
|
||||
font-family: "Open Sans", sans-serif;
|
||||
margin-bottom: 0;
|
||||
line-height: 1.8;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
font-family: Oswald, sans-serif;
|
||||
color: var(--LogoMainColor) !important;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 3.1rem
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 2.7rem
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 2.3rem
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-size: 2rem
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 120%;
|
||||
}
|
||||
|
||||
.visningsbild {
|
||||
width: 70px !important;
|
||||
height: 70px !important;
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
.maxad {
|
||||
width: 100%;
|
||||
}
|
||||
.minLogotyp {
|
||||
transition: transform .2s
|
||||
}
|
||||
|
||||
.minLogotyp:hover {
|
||||
transform: scale(1.1);
|
||||
}
|
||||
|
||||
.myLoginForm {
|
||||
width: 20rem;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.registrera {
|
||||
background-color: var(--LogoMainColor);
|
||||
color: var(--LogoSecondColor);
|
||||
display: block;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
padding: 2rem 0;
|
||||
font-size: 2rem;
|
||||
font-weight: bold;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
.registrera:hover {
|
||||
background-color: var(--LogoSecondColor);
|
||||
color: var(--LogoMainColor);
|
||||
}
|
||||
|
||||
.myCard .card-title {
|
||||
font-size: 9rem;
|
||||
text-shadow: 4px 4px 2px #111, -4px -4px 2px #111, -4px 4px 2px #111, 4px -4px 2px #111;
|
||||
}
|
||||
|
||||
.myCard .card-text {
|
||||
font-size: 2.2rem;
|
||||
text-shadow: 3px 3px 3px #111, -3px -3px 3px #111, -3px 3px 3px #111, 3px -3px 3px #111;
|
||||
}
|
||||
|
||||
.myFooter {
|
||||
color: var(--LogoMainColor);
|
||||
font-size: 90%;
|
||||
}
|
||||
|
||||
.myFooter a,
|
||||
.myFooter a:visited {
|
||||
color: var(--LogoMainColor);
|
||||
text-decoration: underline;
|
||||
font-size: 120%;
|
||||
}
|
||||
|
||||
.myFooter a:hover {
|
||||
background-color: var(--LogoSecondColor);
|
||||
}
|
||||
|
||||
.social i {
|
||||
font-size: 3rem;
|
||||
padding: 0 10px;
|
||||
}
|
||||
|
||||
.myKursCard {
|
||||
text-align: center;
|
||||
margin-top: 40%;
|
||||
text-shadow: 2px 2px 2px #111, -2px -2px 2px #111, -2px 2px 2px #111, 2px -2px 2px #111;
|
||||
}
|
||||
|
||||
.fa-check-square {
|
||||
color: var(--LogoSecondColor);
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
.alert {
|
||||
left: 15%;
|
||||
width: 70%;
|
||||
}
|
||||
71
wwwroot/css/site.css
Normal file
@@ -0,0 +1,71 @@
|
||||
/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
|
||||
for details on configuring this project to bundle and minify static web assets. */
|
||||
|
||||
a.navbar-brand {
|
||||
white-space: normal;
|
||||
text-align: center;
|
||||
word-break: break-all;
|
||||
}
|
||||
|
||||
/* Provide sufficient contrast against white background */
|
||||
a {
|
||||
color: #0366d6;
|
||||
}
|
||||
|
||||
.btn-primary {
|
||||
color: #fff;
|
||||
background-color: #1b6ec2;
|
||||
border-color: #1861ac;
|
||||
}
|
||||
|
||||
.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
|
||||
color: #fff;
|
||||
background-color: #1b6ec2;
|
||||
border-color: #1861ac;
|
||||
}
|
||||
|
||||
/* Sticky footer styles
|
||||
-------------------------------------------------- */
|
||||
html {
|
||||
font-size: 14px;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
html {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
.border-top {
|
||||
border-top: 1px solid #e5e5e5;
|
||||
}
|
||||
.border-bottom {
|
||||
border-bottom: 1px solid #e5e5e5;
|
||||
}
|
||||
|
||||
.box-shadow {
|
||||
box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
|
||||
}
|
||||
|
||||
button.accept-policy {
|
||||
font-size: 1rem;
|
||||
line-height: inherit;
|
||||
}
|
||||
|
||||
/* Sticky footer styles
|
||||
-------------------------------------------------- */
|
||||
html {
|
||||
position: relative;
|
||||
min-height: 100%;
|
||||
}
|
||||
|
||||
body {
|
||||
/* Margin bottom by footer height */
|
||||
margin-bottom: 60px;
|
||||
}
|
||||
.footer {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
white-space: nowrap;
|
||||
line-height: 60px; /* Vertically center the text there */
|
||||
}
|
||||
BIN
wwwroot/favicon.ico
Normal file
|
After Width: | Height: | Size: 5.3 KiB |
BIN
wwwroot/images/Logo.png
Normal file
|
After Width: | Height: | Size: 24 KiB |
BIN
wwwroot/images/arenan.jpg
Normal file
|
After Width: | Height: | Size: 87 KiB |
BIN
wwwroot/images/crossfit.jpg
Normal file
|
After Width: | Height: | Size: 91 KiB |
BIN
wwwroot/images/kampsport.jpg
Normal file
|
After Width: | Height: | Size: 44 KiB |
BIN
wwwroot/images/kids.jpg
Normal file
|
After Width: | Height: | Size: 57 KiB |
BIN
wwwroot/images/kurser.jpg
Normal file
|
After Width: | Height: | Size: 102 KiB |
BIN
wwwroot/images/map.jpg
Normal file
|
After Width: | Height: | Size: 54 KiB |
BIN
wwwroot/images/oppettider.jpg
Normal file
|
After Width: | Height: | Size: 91 KiB |
BIN
wwwroot/images/priser.jpg
Normal file
|
After Width: | Height: | Size: 238 KiB |
BIN
wwwroot/images/sport/0672416102.jpg
Normal file
|
After Width: | Height: | Size: 98 KiB |
BIN
wwwroot/images/sport/1244035394.jpg
Normal file
|
After Width: | Height: | Size: 117 KiB |
BIN
wwwroot/images/sport/1408016154.jpg
Normal file
|
After Width: | Height: | Size: 325 KiB |
BIN
wwwroot/images/sport/3000166147.jpg
Normal file
|
After Width: | Height: | Size: 176 KiB |
BIN
wwwroot/images/sport/7609145953.jpg
Normal file
|
After Width: | Height: | Size: 91 KiB |
BIN
wwwroot/images/sport/9128728540.jpg
Normal file
|
After Width: | Height: | Size: 149 KiB |
BIN
wwwroot/images/sport/9657996380.jpg
Normal file
|
After Width: | Height: | Size: 185 KiB |
BIN
wwwroot/images/sport/nosport.jpg
Normal file
|
After Width: | Height: | Size: 44 KiB |
BIN
wwwroot/images/userphoto/2557162065.jpg
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
wwwroot/images/userphoto/3084318669.jpg
Normal file
|
After Width: | Height: | Size: 93 KiB |
BIN
wwwroot/images/userphoto/3462294956.jpg
Normal file
|
After Width: | Height: | Size: 5.9 KiB |
BIN
wwwroot/images/userphoto/3699262999.jpg
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
wwwroot/images/userphoto/4073068709.jpg
Normal file
|
After Width: | Height: | Size: 5.9 KiB |
BIN
wwwroot/images/userphoto/4396324834.jpg
Normal file
|
After Width: | Height: | Size: 8.6 KiB |
BIN
wwwroot/images/userphoto/4692567562.jpg
Normal file
|
After Width: | Height: | Size: 8.3 KiB |
BIN
wwwroot/images/userphoto/4966463767.jpg
Normal file
|
After Width: | Height: | Size: 6.9 KiB |
BIN
wwwroot/images/userphoto/5299504725.jpg
Normal file
|
After Width: | Height: | Size: 5.0 KiB |
BIN
wwwroot/images/userphoto/5596019725.jpg
Normal file
|
After Width: | Height: | Size: 4.4 KiB |
BIN
wwwroot/images/userphoto/5926666956.jpg
Normal file
|
After Width: | Height: | Size: 5.7 KiB |
BIN
wwwroot/images/userphoto/noimage.jpg
Normal file
|
After Width: | Height: | Size: 7.9 KiB |
BIN
wwwroot/images/vardagsstark.jpg
Normal file
|
After Width: | Height: | Size: 68 KiB |
BIN
wwwroot/images/vikt.jpg
Normal file
|
After Width: | Height: | Size: 50 KiB |
BIN
wwwroot/images/yoga.jpg
Normal file
|
After Width: | Height: | Size: 62 KiB |
4
wwwroot/js/site.js
Normal file
@@ -0,0 +1,4 @@
|
||||
// Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
|
||||
// for details on configuring this project to bundle and minify static web assets.
|
||||
|
||||
// Write your JavaScript code.
|
||||