Show sourcecode

The following files exists in this folder. Click to view.

webbutv3/

exercices/
exercises.php
header.php
incl/
index.php
ovningar/
project
projects.php
projekt/
reflections.php
source.php
stresstest.php
style.css
test
test.py
upgifter/
viewsource.php
word-app/

style.css

39 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
*
{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* region header */

header
{
    background-color: gray;
    padding: 1rem;
}

nav
{
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
}

nav a
{
    text-decoration: none;
    border: 1px black solid;
    padding: 0.5rem;
}

/* endregion header */

main
{
}

h1 
{
    text-align: center;
}