forked from RealDevSquad/website-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
69 lines (60 loc) · 1.09 KB
/
main.css
File metadata and controls
69 lines (60 loc) · 1.09 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
*,
::after,
::before {
box-sizing: border-box;
}
body {
font-family: "Roboto", sans-serif;
margin: 0;
}
.container {
width: 100%;
color: #666;
text-align: center;
padding: 1em 0;
}
#taskForm {
width: 60vw;
max-width: 40rem;
min-width: 300px;
margin: 0 auto;
padding: 1em 1.5em;
border: 1px solid #f4f4f4;
border-radius: 2%;
box-shadow: 0 0 15px -7px rgba(0, 0, 0, .65);
}
.inputBox {
width: 100%;
margin-bottom: 1em;
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
}
.inputBox label {
font-size: 1rem;
font-weight: 700;
}
.inputBox input {
padding: 1em;
border: 1px solid #666;
border-radius: 5px;
width: 100%;
}
.radioButtons {
display: flex;
flex-direction: row;
}
.checkBox {
display: flex;
flex-direction: column;
}
.submitBtn {
background-color: #43a0488c;
font-size: 1rem;
color: #fff;
padding: 1em .5em;
cursor: pointer;
outline: 0;
box-shadow: rgba(0,0,0,.07) 0 1px 1px, rgba(0,0,0,.07) 0 2px 2px, rgba(0,0,0,.07) 0 4px 4px, rgba(0,0,0,.07) 0 8px 8px, rgba(0,0,0,.07) 0 16px 16px;
}