-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
65 lines (55 loc) · 1.1 KB
/
main.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
/* CSS Style Guide */
@import url("https://unpkg.com/@tailwindcss/typography@0.2.x/dist/typography.min.css");
@import url("https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css");
@import url("https://fonts.googleapis.com/css2?family=Amatic+SC:wght@700&display=swap");
* {
text-align: center;
}
body {
font-family: "Helvetica";
}
.websiteLink {
color: black;
background: none;
}
.websiteLink:hover {
color: rgba(100, 200, 200, 1);
}
a {
color: black;
text-decoration: none;
background:
linear-gradient(
to right,
rgba(100, 200, 200, 1),
rgba(100, 200, 200, 1)
),
linear-gradient(
to right,
rgba(255, 0, 0, 1),
rgba(255, 0, 180, 1),
rgba(0, 100, 200, 1)
);
background-size: 100% 3px, 0 3px;
background-position: 100% 100%, 0 100%;
background-repeat: no-repeat;
transition: background-size 400ms;
}
a:hover {
color: black;
text-decoration: none;
background-size: 0 3px, 100% 3px;
}
ul {
list-style: none;
padding-left: 0;
font-size: large;
}
li {
list-style: none;
margin: 10px 0;
}
/* LOGO */
.logo {
font-size: 32px;
}