-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
144 lines (143 loc) · 2.6 KB
/
style.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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
#clockDiv{
text-align: center;
}
#clock{
margin: auto;
width: 50%;
color: black;
font-size: 70px;
font-family: 'Times New Roman';
padding: 15px;
background: -webkit-linear-gradient(black,teal);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
body{
background-image: linear-gradient(to top right,teal, whitesmoke);
}
#mname{
font-size: 60px;
text-align: center;
color: whitesmoke;
background-color: teal;
margin:60px 0 0 0 ;
padding: 20px;
padding-top: 45px;
text-shadow: 5px 5px black;
}
#btn{
background-color: teal;;
padding: 30px;
text-align: center;
}
#previous{
float: left;
background-color: teal;
color: white;
border: none;
font-size: 26px;
font-weight: bolder;
}
#next{
float: right;
background-color: teal;
color: white;
border: none;
font-size: 26px;
font-weight: bolder;
}
#td{
margin: auto;
background-color: teal;
color: white;
border: none;
font-size: 26px;
font-weight: bolder;
}
.day{
float: left;
width: 7.5em;
background-color: rgb(1, 138, 138);
color: white;
font-size: xx-large;
font-weight: bold;
text-align: center;
margin: 0px;
padding: 10px;
}
#sday{
margin-left: 5px;
}
.date{
float: left;
color: teal;
width: 180px;
background-color:whitesmoke;
margin: 15px 25px;
padding: 10px;
font-size: x-large;
font-weight: bold;
text-align: center;
box-shadow: 5px 5px 5px grey;
}
.blank{
background-color: transparent;
box-shadow: none;
}
#overlay{
position: fixed;
display: none;
width: 100%;
height: 100%;
padding-top: 200px;
}
#todo{
margin:auto;
border-radius: 0px;
border: purple 6px solid;
width: 45%;
display: none;
background-color: rgb(245, 215, 225);
}
.heading{
font-size: 35px;
font-family:'Times New Roman', ;
font-weight: bold;
margin-right: 10px;
color: purple;
text-align: center;
}
#shut{
background-color: red;
color: white;
float: right;
padding: 8px;
border-radius: 30px;
cursor : pointer;
}
#add, .delete, .complete{
float: right;
background-color: rebeccapurple;
padding: 8px;
border-radius: 4px;
color: white;
cursor : pointer;
font-size: 20px;
margin-bottom: 2px;
}
.complete{
margin-right: 8px;;
}
#addtask{
padding: 30px;
margin: 20px 10px;
}
ul{
list-style-type: none;
}
li{
padding: 20px;
border-left: 5px solid lavenderblush;
margin: 20px 10px;
font-size: 20px;
}