forked from kylecorry31/stock-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
53 lines (47 loc) · 975 Bytes
/
style.css
File metadata and controls
53 lines (47 loc) · 975 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
body, html {
margin: 0;
padding: 0;
background: #f2f2f2;
font-family: sans-serif;
}
#stock-add-form {
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
margin: 16px;
padding: 16px;
background: white;
border-radius: 4px;
position: relative;
}
.form-input {
display: flex;
width: 100%;
margin-bottom: 16px;
justify-content: flex-start;
align-items: center
}
.form-input input {
width: 90%;
margin-left: 16px;
border: 1px solid rgba(0, 0, 0, 0.4);
border-radius: 4px;
padding: 16px;
color: rgba(0, 0, 0, 0.87);
}
.form-input input:hover {
border: 1px solid rgba(0, 0, 0, 0.87);
}
.form-input label {
width: 5%;
text-align: left;
color: rgba(0, 0, 0, 0.87);
}
button {
background: rgba(0, 100, 0, 0.86);
border: none;
padding: 12px 16px;
border-radius: 4px;
color: white;
cursor: pointer;
font-weight: bold;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}