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)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
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;
}