-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
66 lines (55 loc) · 1023 Bytes
/
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
60
61
62
63
64
65
66
* {
box-sizing: border-box;
}
body {
margin: 0 auto;
font-family: sans-serif;
background-color: rgb(73, 70, 70);
background-image: url('./images/background.jpg');
}
img {
border-radius: 50%;
}
main {
display: block;
align-items: center;
padding: 100px;
margin: 100px auto;
background-color: rgb(0, 0, 0, 0.8);
width: 800px;
height: auto;
border-radius: 5%;
box-shadow: rgb(0, 0, 0, 0.1);
color: rgb(255, 255, 255);
}
.menu li {
list-style-type: none;
}
/* -- Hover Behaviour --*/
a {
transition: .5s;
}
a:link {
color: rgb(255, 255, 255);
text-decoration: none;
font-weight: bold;
}
a:visited {
color: orange;
text-decoration:
line-through; font-weight: bold;
}
a:active {
color: orange;
text-decoration: none;
}
a:hover {
color: rgb(163, 20, 219);
font-size: 1.5em;
}
h1 {
font-size: 4em;
}
h2 {
font-size: 2em;
}