-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
59 lines (56 loc) · 1 KB
/
style.css
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
body {
background-color: #222d3f;
background-image: url("shield.png"), url("shield.png");
# background-image: url("sko.png");
background-size: 375px 343px;
background-repeat: no-repeat;
background-position: left top, right top;
background-attachment: fixed;
color: white;
}
input[type=submit] {
background-color: #424D57;
border: none;
color: white;
padding: 8px 16px;
text-decoration: none;
margin: 4px 2px;
cursor: pointer;
width: 200px;
-webkit-transition-duration: 0.4s; /* Safari */
transition-duration: 0.4s;
border-radius: 8px;
}
input:hover {
background-color: #f44336;
color: white;
}
form, table {
display:inline;
margin:0px;
padding:0px;
}
h1 {
font-size: 25px;
}
h2 {
font-size: 20px;
}
h3 {
font-size: 15px;
}
div.relative {
position: relative;
left: 9px;
}
div.relative1 {
position: relative;
left: 6px;
}
a:link {
color: red;
}
/* visited link */
a:visited {
color: green;
}