-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
85 lines (72 loc) · 1.2 KB
/
styles.css
File metadata and controls
85 lines (72 loc) · 1.2 KB
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
*,
*::before,
*::after {
box-sizing: border-box;
border: none;
}
img {
display: block;
max-width: 100%;
}
menu:not(article menu),
ol:not(article ol),
ul:not(article ul) {
list-style: none;
}
menu,
ol,
ul {
padding-left: 0;
}
article ol,
article ul {
list-style-position: inside;
}
a {
/* Paces underlines below the descenders */
text-underline-position: under;
/* Sets the thickness as a percentage of the font size */
text-decoration-thickness: 8;
}
/* <html> = the root */
html {
font-size: 62.5%; /* (62.5/100) * 16px = 10px */
}
html {
-webkit-text-size-adjust: none; /* for iOS Safari */
text-size-adjust: none; /* for other mobile browsers*/
/*background-image: linear-gradient(#e66465, #9198e5);*/
}
@media (prefers-reduced-motion: no-preference){
html{
scroll-behavior: smooth;
}
}
:focus:not(:foucs-visible) {
outline: none;
}
label,
button,
select,
summary,
[type=radio],
[type=submit],
[type=checkbox] {
cursor: pointer;
}
/*body {
background-image: linear-gradient(#e66465, #9198e5);
}
*/
.button {
font-size: 30px;
margin: auto;
width: 100%;
padding: 10px;
border-radius: 10px;
cursor: pointer;
border: solid 3px #fff;
background: none;
color: #fff;
display: block;
}