Skip to content

Commit 136c7a8

Browse files
0 parents  commit 136c7a8

File tree

152 files changed

+38650
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

152 files changed

+38650
-0
lines changed

.nojekyll

Whitespace-only changes.

CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
www.compgeolab.org

css/reset.css

Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
/*****************************************************************************
2+
* Andy Bell's CSS reset: https://andy-bell.co.uk/a-modern-css-reset
3+
* License: MIT
4+
* Includes some minor modifications by Leonardo Uieda.
5+
*****************************************************************************/
6+
7+
/* Box sizing rules */
8+
*,
9+
*::before,
10+
*::after {
11+
box-sizing: border-box;
12+
}
13+
14+
/* Remove default margin */
15+
body,
16+
h1,
17+
h2,
18+
h3,
19+
h4,
20+
p,
21+
ul,
22+
ol,
23+
figure,
24+
blockquote,
25+
dl,
26+
dd {
27+
margin: 0;
28+
}
29+
30+
/* Remove list styles on ul, ol elements with a list role, which suggests
31+
* default styling will be removed */
32+
ul[role='list'],
33+
ol[role='list'] {
34+
list-style: none;
35+
padding-left: 0;
36+
}
37+
38+
/* Set core root defaults */
39+
html:focus-within {
40+
scroll-behavior: smooth;
41+
}
42+
43+
/* Set core body defaults */
44+
body {
45+
min-height: 100vh;
46+
text-rendering: optimizeSpeed;
47+
line-height: 1.5;
48+
}
49+
50+
/* A elements that don't have a class get default styles */
51+
a:not([class]) {
52+
text-decoration-skip-ink: auto;
53+
}
54+
55+
/* Make images easier to work with */
56+
img,
57+
picture {
58+
max-width: 100%;
59+
display: block;
60+
}
61+
62+
/* Inherit fonts for inputs and buttons */
63+
input,
64+
button,
65+
textarea,
66+
select {
67+
font: inherit;
68+
}
69+
70+
/* Remove all animations, transitions and smooth scroll for people that prefer
71+
* not to see them */
72+
@media (prefers-reduced-motion: reduce) {
73+
html:focus-within {
74+
scroll-behavior: auto;
75+
}
76+
77+
*,
78+
*::before,
79+
*::after {
80+
animation-duration: 0.01ms !important;
81+
animation-iteration-count: 1 !important;
82+
transition-duration: 0.01ms !important;
83+
scroll-behavior: auto !important;
84+
}
85+
}

0 commit comments

Comments
 (0)