forked from vercel/next.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglobals.css
More file actions
56 lines (49 loc) · 697 Bytes
/
globals.css
File metadata and controls
56 lines (49 loc) · 697 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
55
56
body {
margin: 0;
font-family:
-apple-system,
BlinkMacSystemFont,
Segoe UI,
Roboto,
Oxygen,
Ubuntu,
Cantarell,
Fira Sans,
Droid Sans,
Helvetica Neue,
sans-serif;
}
a {
color: inherit;
text-decoration: none;
}
* {
box-sizing: border-box;
}
ul,
li {
padding: 0;
list-style: none;
line-height: 1.4em;
}
button {
margin-right: 1rem;
border-radius: 0.4rem;
border: 0;
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
padding: 10px 15px;
font-size: large;
color: white;
background-color: #ff5416;
cursor: pointer;
}
button:hover {
background-color: #ff2739;
}
h1 {
margin: 0;
}
p {
width: 100%;
}