-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
60 lines (50 loc) · 1.21 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
@import url('https://fonts.googleapis.com/css2?family=Jacquarda+Bastarda+9+Charted&display=swap');
html {
height: 100%;
width: 100%;
}
#ugly {
font-family: "Jacquarda Bastarda 9 Charted", serif;
font-weight: 400;
font-style: normal;
color: brown;
text-shadow: 1px 1px 6px yellow;
transform: rotate(10deg)
}
body {
background-image: url("https://img.freepik.com/free-vector/hand-painted-watercolor-pastel-sky-background_23-2148902771.jpg?size=626&ext=jpg&ga=GA1.1.1448711260.1706486400&semt=ais");
background-size: cover;
/* Fixed background */
background-attachment: fixed;
}
img {
box-shadow: 1px 1px 3px 2px #444;
transition: 0.5s
}
img:hover {
transform:rotateY(180deg);
box-shadow: inset 1px 1px 3px 2px #444;
}
h1 {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
text-shadow: 1px 1px 2px #aaaaff;
transition: 0.3s;
color: #224499
}
h1:hover {
transform: translateY(3px);
text-shadow: 2px 2px 4px #14eb34;
}
p, li {
font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif
}
h3 {
font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif
}
.red {
color: red;
background-color: yellow;
}
#myParagraph {
transition: 0.5s ease;
}