-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
77 lines (64 loc) · 1.04 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
body {
margin: 0;
text-align: center;
}
img {
height: 200px;
margin-top: 100px;
}
.line {
height: 8px;
background-color: black;
width: 70px;
margin: 40px auto;
}
p {
font-size: 17px;
}
#welcome {
background: linear-gradient(#22c1c3, #fdbb2d);
z-index: 9;
}
#menu {
list-style: none;
top: 10px;
right: 30px;
cursor: pointer;
position: fixed;
z-index: 10;
}
.link:hover {
background-color: aquamarine;
}
.link {
float: left;
padding-top: 5px;
padding-left: 9px;
padding-right: 9px;
padding-bottom: 5px;
font-family: serif;
font-size: 20px;
}
#hp:hover {
color: crimson;
}
#hp {
margin-bottom: 50px;
}
a {
text-decoration: none;
}
html {
scroll-behavior: smooth;
}
.authors {
transition: transform .2s;
height:450px;
width:300px;
}
.authors:hover {
transform: scale(0.9);
}
#inspiration{
background: linear-gradient(#07c7fa,#09796b);
}