-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
65 lines (61 loc) · 1.17 KB
/
styles.css
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
* {
margin: auto;
padding: auto;
box-sizing: border-box;
}
body, span#root{
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-size: 16px;
width: 100%;
max-width: 48rem;
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-self: center;
text-align: center;
padding: 6px;
}
gray.text-bin, gray.bin-text {
user-select: none;
cursor: pointer;
font-size: 18px;
color: rgb(104, 104, 255);
}
gray.text-bin {
display: none;
}
div {
margin-top: 40px;
}
div input {
margin-top: 20px;
}
div input[type="text"] {
outline: none;
border: 1px solid black;
border-radius: 7px;
padding: 16px;
width: 99%;
}
div input[type="submit"] {
text-transform: uppercase;
background-color: #fff;
outline: none;
border: 1px solid black;
border-radius: 7px;
padding: 16px;
width: 99%;
}
div.bin-text {
display: none;
}
footer {
width: 100%;
padding: 16px;
}
footer svg {
vertical-align: middle;
width: 28px;
height: 28px;
}