forked from vercel/next.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglobal.css
More file actions
77 lines (69 loc) · 1.25 KB
/
global.css
File metadata and controls
77 lines (69 loc) · 1.25 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
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
margin: 0;
background-color: #f5f5f5;
padding: 20px;
}
label {
font-weight: bold;
display: block;
margin-bottom: 5px;
}
input[type="text"] {
border: 1px solid #ccc;
padding: 10px;
font-size: 16px;
width: 100%;
box-sizing: border-box;
margin-bottom: 10px;
border-radius: 4px;
outline-offset: 4px;
}
button {
background-color: black;
border-radius: 4px;
color: white;
padding: 10px 24px;
border: none;
cursor: pointer;
width: 100%;
font-size: 16px;
outline-offset: 4px;
}
button:hover {
opacity: 0.8;
}
button[aria-disabled="true"] {
opacity: 0.5;
cursor: not-allowed;
}
ul {
padding: 0;
margin: auto;
}
li {
background: #f9f9f9;
padding: 10px;
margin-bottom: 10px;
border: 1px solid #ddd;
border-radius: 4px;
display: flex;
justify-content: space-between;
align-items: center;
}
.sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border-width: 0;
}