-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
115 lines (92 loc) · 1.75 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
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
107
108
109
110
111
112
113
114
115
@font-face {
font-family: Montserrat;
font-style: normal;
font-weight: 700;
font-display: swap;
src: local('Montserrat'), url(https://fonts.gstatic.com/s/montserrat/v24/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq0N6WXh0pg.woff2) format('woff2');
}
html {
scroll-behavior: smooth;
}
body {
font-family: 'Montserrat', sans-serif;
color: #343a40;
background: linear-gradient(100deg, #5757fb, #f8f9fa);
background-size: 200% 200%;
animation: gradientAnimation 60s ease infinite;
}
@keyframes gradientAnimation {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
.navbar-brand {
font-weight: bold;
}
h1,
h2 {
font-family: 'Montserrat', sans-serif;
}
h1 {
font-size: clamp(0.8rem, 8vw, 3.5rem) !important;
}
h2 {
font-size: clamp(0.75rem, 8vw, 2rem) !important;
}
section {
padding-top: 4.75rem;
}
.img-fluid {
transition: transform 0.3s ease-in-out;
}
.img-fluid:hover,
a:focus img {
transform: scale(1.1);
}
.img-size-large {
max-width: 250px;
max-height: 250px;
}
.img-size-small {
max-width: 25px;
max-height: 25px;
}
#request-cookies,
#rejected-cookies {
font-size: clamp(0.25rem, 2vw, 0.875rem);
margin-bottom: clamp(0.2rem, 1.5vw, 0.75rem) !important;
}
#accept-cookies,
#reject-cookies,
#retry-cookies {
font-size: clamp(0.25rem, 2vw, 0.875rem);
padding: clamp(0.05rem, 1vw, 0.25rem) clamp(0.1rem, 2vw, 0.5rem);
}
a {
text-decoration: none !important;
}
p a {
color: #0056b3;
}
p a:visited {
color: #8800ff;
}
p a:hover {
color: #ff5733;
}
p a:focus {
color: #00840b;
}
p a:active {
color: #d63384;
}
footer {
color: white;
background-color: #343a40;
}