-
Notifications
You must be signed in to change notification settings - Fork 0
/
styling.css
60 lines (54 loc) · 830 Bytes
/
styling.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{
margin: 65px 350px;
padding: 20px;
background-color: darkslategrey;
}
h1, h2, h3{
color: MidnightBlue;
}
span{
color: black;
}
input, textarea{
border-radius: 10px;
}
a{
font-style: italic;
text-decoration: none;
background-color: white;
color: black;
border: 2px solid blue;
padding: 3px 7px;
text-align: center;
display: inline-block;
}
/* unvisited link */
a:link {
color: red;
}
/* visited link */
a:visited {
color: blue;
}
/* mouse over link */
a:hover {
color: hotpink;
}
/* selected link */
a:active {
color: green;
}
div{
border: 15px solid MidnightBlue;
background-color: white;
}
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
border: 0;
background-color: black;
color: white;
text-align: center;
}