-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
54 lines (46 loc) · 743 Bytes
/
styles.css
File metadata and controls
54 lines (46 loc) · 743 Bytes
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
:root {
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
sans-serif;
font-size: 16pt;
}
body {
padding: 20px;
margin: 0;
text-align: center;
background-color: #ebc5d7;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
margin: 0;
}
a:link,
a:visited {
text-decoration: none;
color: #b55b85;
}
.os {
display: none;
}
.button {
margin-bottom: 10px;
border: 2px solid black;
border-radius: 10px;
padding: 10px;
background-color: white;
transition: 200ms ease-in-out;
}
.button:hover {
scale: 1.025;
}
i.ti {
margin-inline-end: 5px;
}
a:hover span {
text-decoration: underline;
}