main.scss
839 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
html,
body {
height: 100%;
}
body {
background-color: #f5f5f5;
color: $black;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
font-size: 14px;
}
main {
width: 100%;
max-width: 1200px;
margin: 0 auto;
min-height: 70vh;
}
button,
input:not([type="file"]),
textarea,
.fileUpload {
padding: 7px 10px;
width: 100%;
border: none;
border-radius: 5px;
font-size: 14px;
color: $black;
font-weight: 600;
background-color: white;
max-width: 320px;
resize: none;
&::placeholder {
font-weight: 300;
color: rgba(0, 0, 0, 0.7);
}
}
button {
border: none;
background-color: #3498db;
color: white;
}
button.delete {
background-color: $dark-red;
}
button,
input[type="submit"] {
cursor: pointer;
}