View sourcecode

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

style.css

46 lines UTF-8 Unix (LF)
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
body {
  margin: 40px;
  background: #f4f4f4;
  font-family: "Roboto", sans-serif;
}

main {
  width: 60%;
  max-width: 600px;
  margin: auto;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.info {
  background: #f4f4f4;
  padding: 10px;
  border-left: 3px solid #8a4af3;
}

.red {
  color: red;
}

/* Knappar */
input[type="submit"] {
  background-color: #8a4af3;
  border: none;
  color: white;
}

input[type="submit"]:hover {
  background-color: #6c3dc7;
}

/* Länkar */
a {
  color: #8a4af3;
}

a:hover {
  color: #6c3dc7;
}