-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
96 lines (85 loc) · 1.7 KB
/
index.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
body{
background-color: rgb(208, 208, 208);
}
.container {
/*max-width: 500px;*/
width: 100%;
margin: auto;
}
.col {
height : 100vh;
background-color: #fff;
width: 100%;
}
.Appname {
height: 100px; /*200px */
background-color: rgb(99, 0, 49);
color: #fff;
padding: 0 20px;
border-bottom-left-radius: 20px;
border-bottom-right-radius: 20px;
box-shadow: rgba(0,0,0, 0.15) 1.50px 1.50px 2px;
}
.Appname h1 {
position: relative;
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
top: 35px; /*140px*/
font-size: 30pt;
}
.Appname button {
position: relative;
top: -15px;
left: 1100px;
color: rgb(99, 0, 49);
background-color: #fff;
font-size: 20pt;
border: none;
width: 40px;
height: 40px;
line-height: 40px;
border-radius: 50px;
font-weight: bold;
}
.list {
width: 1250px;
height: 580px;
background-color: rgb(99, 0, 49);
overflow-y: scroll;
margin: 20px auto;
}
.reminder{
width: 1250px; /*420px*/
height: 50px;
border: 1px solid #fff;
color: #000;
background-color: #fff;
list-style: none;
line-height: 50px;
margin: 5px auto;
position: relative;
right: 30px;
display: -webkit-inline-box;
padding: 10px;
box-shadow: rgba(0,0,0, 0.15) 1.50px 1.50px 2px;
}
.text
{
width: 1000px;
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
color: rgb(99, 0, 49);
}
.Check{
color: #fff;
background-color: rgb(55, 102, 255);
border: none;
width: 70px ;
height: 35px;
margin-right: 10px;
}
.Delete{
color: #fff;
background-color: red;
border: none;
width: 60px;
height: 35px;
}