Visa källkod

Följande filer finns i denna mapp. Klicka på dem för att visa koden!

main.css

78 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
body{
    background-color: grey;
    padding 10px;
    border: 2px;
}
div.vanster{
    background-color: green;
    margin-top: 50px;
    height: 500px;
    width: 50%;
    float:left;
}
div.hoger{
    background-color: red;
    margin-top: 50px;
    height: 500px;
    width: 50%;
    float:right; 
}
h2.titel{
    margin-top: 50px;
    font-size: 30px;
    text-align: center;
    font-family: serif, sans-serif;
    font-weight: 500;
}
li.uppgifter{
    text-align: center;
    list-style: none;
}
section.uppgifter{
    height: 10%;
    width: 80%;
    background-color: white;
    background-repeat: no-repeat;
    align-content: center;
    margin-left: 10%;
}
h1.desc{
    margin-top: -5px;
    text-align: center;
}
section.projekt{
    height: 115px;
    width: 80%;
    margin-top: 15px;
    margin-left: 10%;
    background-color: yellow;
}
div.footer{
    position: fixed;
    left: 0;
    bottom: 0;
    width: 50%;
    height: 10%;
    background-color: red;
    border: green solid 5px;
    opacity: 5%;
}
div.footer:hover{
    filter: alpha(opacity=100);
    opacity: 1.0;
}
div.knappar{
    height: 70%;
    width: 23%;
    margin-top: 10px;
    margin-left: 10px;
    background-color: yellow;
    float: left;

}
div.knappar:hover{
    background-color: orange;
}
div.knappar p{
    text-align: center;
}