-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutilities.css
106 lines (85 loc) · 1.55 KB
/
utilities.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/* Icons */
.right-arrow-icon {
width: 16px;
height: 16px;
margin-top: 1px;
}
.footer-icon {
width: 20px;
height: 20px;
}
a.icon-link {
transition: transform 200ms ease-in-out;
}
a.icon-link:hover {
cursor: pointer;
stroke-width: 5;
margin: 0;
transform: rotate(15deg);
}
/* Navbar Styling */
.navbar {
width: 100%;
padding: 30px 50px;
display: flex;
justify-content: space-between;
align-items: center;
position: fixed;
top: 0;
left: 0;
}
.nav-title-link {
color: black;
text-decoration: none;
}
.nav-title-link:hover {
text-decoration: underline;
}
/* Small devices (portrait tablets and large phones, 800px and below) */
@media only screen and (max-width: 800px) {
.navbar {
padding: 20px 20px;
background-color: white
}
}
/* Button Styling */
a.button {
padding: 8px 16px;
border: 3px solid #141414;
border-radius: 50px;
color: black;
text-decoration: none;
width: fit-content;
display: flex;
gap: 5px;
align-items: center;
}
a.button:hover {
text-decoration: underline;
text-decoration-thickness: 2px;
cursor: pointer;
}
/* Footer Styling */
#footer {
width: 100%;
display: flex;
padding: 30px 50px;
justify-content: center;
align-items: center;
gap: 16px;
}
/* Link Styling */
a.no-underline {
text-decoration: none;
color: black
}
a.no-underline:hover {
text-decoration: underline;
cursor: pointer;
}
/* Small devices (portrait tablets and large phones, 800px and below) */
@media only screen and (max-width: 800px) {
#footer {
padding: 20px 20px;
}
}