Show sourcecode
The following files exists in this folder. Click to view.
webbserverprogrammering/index/
index.css
index.html
index.js
ovningar.html
projekt.html
test.txt
index.css
114 lines ASCII Windows (CRLF)
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
html{
box-sizing: border-box;
overflow-x: hidden;
}
header p{
font-weight: bold;
font-size: 2em;
display: inline;
}
h1{
height: 2vh;
}
p{
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-size: 1.2em;
}
header{
padding-top: 5vh;
padding-left: 5vw;
padding-right: 5vw;
background-color: rgb(211, 211, 211);
height: 13vh;
width: 90vw;
border: solid black;
border-bottom: 0;
}
header a {
float: right;
margin: 0 1vw;
text-decoration: none;
color: black;
}
header a:hover{
color: white;
}
main{
display: flex;
justify-content: space-evenly;
padding-top: 8vh;
text-align: center;
min-height: 58.6vh;
border: solid black;
border-bottom: 0;
width: 100vw;
flex-direction: row;
}
main a{
display: flex;
width: 25vw;
height: 50vh;
border: 2px solid black;
border-radius: 2vw;
background-color: lightgray;
justify-content: center;
align-items: center;
text-decoration: none;
color: black;
font-weight: bold;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-size: 2em;
transition: 0.2s;
}
main a:hover{
width: 27.5vw;
border: 3px solid black;
}
#img_arrow{
text-align: center;
width: 15vw;
height: 20vh;
}
body{
background-size: cover;
background-position: center;
background-repeat: no-repeat;
margin: 0;
}
#mainwebb{
min-height: 440px;
display: flex;
justify-content:center;
justify-content: space-around;
border: solid black;
border-radius: 20px;
background-color: gray;
}
.hemsidor{
display: flex;
margin: 3px;
height: 100px;
width: 100px;
padding: 20px;
border: solid black 2px;
border-radius: 10px;
text-decoration: none;
color: black;
font-weight: bold;
font-size: 1.2em;
text-align: center;
align-items: center;
justify-content: center;
background-color: lightgray;
}
footer{
background-color: rgb(211, 211, 211);
position: relative;
bottom: 0;
padding: 20px;
padding-bottom: 30px;
min-height: 10px;
text-align: center;
border: solid black;
width: 100vw;
}