-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
executable file
·119 lines (99 loc) · 1.92 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
body, html{
height: 100%;
width: 100%;
background: #00BFA5;
}
#authorize-div{
max-width: 400px;
padding: 15px;
margin: 20% auto 0 auto;
min-height: 200px;
background: #fff;
text-align: center;
}
#authorize-div .h1{
font-size: 22px;
color: #666;
margin:20px 0;
font-weight: 500;
}
#authorize-button:hover{
border: 1px solid #009688;
background: #009688;
color: rgba(255,255,255,1)
}
#authorize-button{
width: 60%;
margin: 0 auto;
padding: 0;
border: 1px solid #009688;
background: #009688;
font-size: 18px;
height: 50px;
text-align: center;
font-weight: 600;
border-radius: 2px;
margin-top: 20px;
color: rgba(255,255,255,0.9);
}
.shadow-txt{
-webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,.16),0 2px 10px 0 rgba(0,0,0,.12);
-moz-box-shadow: 0 2px 5px 0 rgba(0,0,0,.16),0 2px 10px 0 rgba(0,0,0,.12);
box-shadow: 0 2px 5px 0 rgba(0,0,0,.16),0 2px 10px 0 rgba(0,0,0,.12);
}
.calendar-view{
background: #fff;
min-height: 550px !important;
padding: 15px;
width: 80%;
margin:20px auto;
}
#createEvent{
top: 10% !important;
}
#createEvent .modal-dialog{
max-width: 400px !important;
margin: 0 auto !important;
}
#createEvent .modal-footer{
text-align: center;
}
#createEvent .modal-content{
border-radius: 0 !important;
}
#createEvent .modal-header{
text-align: center;
background: #ffa000;
}
#createEvent .modal-title{
font-size: 22px;
color: #535353;
}
#createEvent .close{
font-size: 30px;
}
#createEvent label{
color:#666 !important;
}
.create-event{
background: #4db6ac !important;
border:1px solid #4db6ac;
color: rgba(255,255,255,.9);
}
.create-event:hover{
background: #26a69a !important;
border:1px solid #26a69a;
color: rgba(255,255,255,1);
}
.event-time{
text-align: center;
font-size: 16px;
background: #009688;
padding: 0.2rem;
color: #fff;
margin-bottom: 10px;
}
.event-error{
color: red;
padding: 0.5rem 0;
}