-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcalender.css
More file actions
150 lines (136 loc) · 2.76 KB
/
calender.css
File metadata and controls
150 lines (136 loc) · 2.76 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
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
145
146
147
148
149
150
.bigContainer{
width: 65%;
/* border: 1px solid red; */
/* text-align: center; */
display: grid;
grid-template-columns: 1fr 1.4fr 0.7fr;
margin: auto;
gap: 20px;
box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
margin-top: 50px;
}
.small-Container-1{
margin-left: 20px;
border-right: 1px solid rgba(0, 0, 0, 0.24);
}
.clock{
color: grey;
}
.small-Container-1 :nth-child(6){
color: rgb(54, 54, 127);
cursor: pointer;
position: relative;
bottom: -320px;
}
.small-Container-1 :nth-child(6):hover{
text-decoration: underline;
}
.time-duration{
color: rgb(97, 89, 89);
margin-left: 20px;
/* margin-bottom: 25px; */
/* border: 1px solid red; */
}
.time-duration-2{
color: rgb(97, 89, 89);
margin-left: 20px;
/* border: 1px solid red; */
}
.small-Container-2-part-1{
/* */
/* border: 1px solid red; */
display: grid;
/* gap:10px */
grid-template-columns: repeat(3,1fr);
/* text-align: center; */
}
.arrow1{
margin: 18px;
margin-left: 150px;
}
.arrow2{
margin: 18px;
margin-left: 100px;
color: blue;
}
.days{
display: grid;
grid-template-columns: repeat(7,1fr);
row-gap: 15px;
}
/* .right-arrow{
margin: 25px;
} */
.days button{
cursor: pointer;
border-radius: 50%;
width: 40px;
height: 40px;
text-decoration: none;
border: none;
background-color: rgb(211 218 250 / 65%);
color: #0060e6;
}
.days .weekend{
background-color: #fff;
border: none;
align-items: center;
cursor: default;
color: black;
font-size: 400;
}
.days button:not(.weekend) {
font-weight: 700;
}
.days button:hover:not(.weekend){
background-color: #87b5f6;
}
#ISt{
margin-top: 45px;
width: 55%;
/* background-color:red; */
height: 35px;
border-radius: 25px;
border: none;
}
#ISt:focus{
color: rgb(7, 6, 6);
}
.troubleshoot{
/* border: 1px solid #ff0000; */
/* width: 60px; */
height: 1.3rem;
margin-top: 5%;
padding-bottom: 30px;
cursor: pointer;
}
.troubleshoot button{
border: 0.5px solid ;
height: 2.3rem;
border-radius: 5px;
cursor:pointer;
/* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
background-color: #fff;
}
#bigContainer{
display: flex;
flex-direction: column;
}
#bigContainer button{
width :200px;
padding: 15px;
margin-bottom: 25px;
cursor: pointer;
color: rgba(55, 55, 188, 0.892);
border: 2px solid rgba(55, 55, 188, 0.892);
background-color: white;
}
#bigContainer button:hover{
border: 2px solid blue;
}
#bigContainer button {
border: 1px solid rgba(55, 55, 188, 0.892);
}
#bigContainer button:hover {
border: 2px solid rgba(55, 55, 188, 0.892);
}