-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
120 lines (102 loc) · 1.71 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
#menu {
display: flex;
justify-content: center;
align-items: center;
background-color: #ffffff;
width: 100%;
height: 80px;
transition: top 0.3s;
box-shadow: #cbcbcb 10px 0 5px 0;
}
.logo {
font-size: 32px;
color: black;
}
body {
width: 100%;
background-color: #f1f1f1 !important;
font-family: "Roboto", sans-serif !important;
}
.paper {
background-color: #ffffff;
align-self: center;
margin-top: 200px;
border-radius: 5px;
box-shadow: #cbcbcb 0 0 5px 0;
}
.myCard {
display: flex;
align-items: center;
flex-direction: column;
}
.footer {
background-color: #ffffff;
color: #000000;
margin-top: 100px;
width: 100%;
height: 80px;
}
h6 {
text-align: center;
padding: 8px;
}
.modal-content {
padding: 0 50px 10px 50px;
}
.top-options {
height: 70px;
display: flex;
align-items: center;
margin-top: 16px;
}
.add {
font-size: 17px;
padding: 10px 30px 10px 30px;
border: none;
border-radius: 3px;
color: white;
background-color: #57b3f4;
box-shadow: #57b3f4 0 0 2px 0;
margin-left: 15px;
}
.my-tasks {
margin-bottom: 16px;
}
.one-task:hover {
box-shadow: #9e9e9e 0 0 3px 0;
}
.one-task {
height: 80px;
border-radius: 9px;
box-shadow: #cecece 0 0 2px 0;
margin: 7px 0 7px 0;
}
.one-task .row {
display: flex;
align-items: center;
margin-top: 20px;
}
.task-name {
font-size: 23px;
margin-left: 5px;
}
.task-importance {
color: white;
border-radius: 30px;
width: 110px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
margin-right: 5px;
}
.high {
background-color: #f4656a;
}
.medium {
background-color: #f4e558;
}
.low {
background-color: #89e262;
}
/*# sourceMappingURL=styles.css.map */