-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalendar.css
132 lines (126 loc) · 2.6 KB
/
calendar.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
body{
background-color: rgba(97, 149, 216, 0.719);
font-family: sans-serif;
color: rgb(43, 46, 48);
}
.container{
display: flex;
justify-content: center;
}
.container_main{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
kbd{
border: 1px solid gray;
padding: 10px 10px;
border-radius: 5px;
background-color: rgb(212, 220, 228);
font-size: 16px;
}
strong{
background-color: rgb(223, 223, 100);
padding: 5px 10px;
border-radius: 5px;
margin-left: 5px;
}
.info-top{
margin: 30px 10px;
font-size: 20px;
}
.header{
background-color: rgb(191, 199, 206);
padding: 10px 20px;
border-radius: 5px;
color: rgb(0, 0, 0);
}
.div-text-btn{
display: flex;
flex-direction: row-reverse;
}
#text_input{
/* width: 80%; */
font-size: 23px;
padding: 5px;
border-radius: 5px;
background-color: rgba(255, 255, 255, 0.637);
color: rgb(43, 46, 48);
flex-grow: 1;
margin: 10px 10px 10px 5px;
}
#text_input:active{
animation: text_big 2s ease-in both;
}
.btn_Add{
color: rgb(57, 60, 61);
padding: 5px 7px;
border-radius: 4px;
background-color: rgba(13, 236, 42, 0.911);
height: 41px;
margin: 10px 0px 10px 10px;
border: 1px solid rgba(0, 0, 0, 0.438);
box-shadow: black -1px 1px 2px;
position: relative;
}
.btn_Add:active{
box-shadow: none;
background-color: rgba(17, 196, 41, 0.911);
}
#container-calendar{
width: 100%;
height: 63%;
border-radius: 10px;
border: 1px solid rgb(83, 73, 73);
background-color: rgba(88, 143, 143, 0.733);
display: flex;
flex-direction: column;
overflow-y: scroll;
align-items: center;
animation: view 1s ease-in both;
/* position: absolute; */
}
.edit-text{
display: flex;
justify-content: space-between;
align-items: center;
position: relative;
width: 98%;
/* height: 20px; */
font-size: 19px;
padding: 1% 1%;
margin: 10px 10px;
border-radius: 10px;
border: 0px;
background-color: rgba(153, 207, 253, 0.541);
animation: view 200ms ease-in both;
}
@keyframes view{
0%{opacity: 0;}
100%{opacity: 1;}
}
.edit-text:hover{
background-color: rgba(140, 187, 228, 0.596);
}
.edit-text:focus{
background-color: rgba(64, 255, 96, 0.719);
}
.delete_icon{
float: right;
cursor: pointer;
font-size: 30px;
}
.B{
background-color: rgba(140, 187, 228, 0.596);
}
.B:focus{
background-color: rgba(64, 255, 96, 0.719);
}
.view-remove{
animation: remove_tag 500ms ease-in-out both;
}
@keyframes remove_tag{
0%{opacity: 1;}
100%{opacity: 0;}
}