-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
158 lines (140 loc) · 2.68 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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
body{
background-image: url('pic5.jpg');
background-size: 1500px;
margin: 0;
padding: 0;
}
/* Flash Messages */
.error {
background-color: #f2dede;
border-color: #ebccd1;
color: #a94442;
padding: 15px;
margin-bottom: 20px;
}
.success {
background-color: #aceb92;
border-color: #d6e9c6;
color: #3c763d;
padding: 15px;
margin-bottom: 20px;
}
h1{
font-family: 'Times New Roman', serif;
font-weight: bold;
font-size: 50px;
color: rgb(153, 232, 252);
text-shadow: 2px 2px 2px blue;
text-align: center;
}
h2{
font-family: 'Times New Roman', serif;
font-weight: bold;
font-size: 25px;
color: rgb(94, 196, 255);
text-shadow: 1px 1px 1px blue;
text-align: center;
}
h3{
font-family: 'Times New Roman', serif;
font-weight: bold;
font-size: 20px;
margin: 3px;
color: rgb(94, 196, 255);
text-shadow: 1px 1px 1px blue;
text-align: center;
}
button{
background-color: rgb(55, 161, 248);
border: 5px;
color: white;
text-shadow: 1px 1px blue;
padding: 10px 40px;
text-align: center;
text-decoration: none;
display: inline-block;
font-family: 'Times New Roman', serif;
font-size: 16px;
font-weight: 600;
margin: 0;
cursor: pointer;
width: 160px;
border-radius: 5px;
}
button:hover {
background-color: rgb(0, 119, 255);
color: white;
}
.input-box{
padding: 5px;
border: 0;
box-shadow:0 0 5px 4px rgb(173, 236, 252);
border-radius:5px;
width: 50%;
}
.login{
width: 400px;
box-shadow: 0 0 3px 2px rgb(94, 196, 255);
border-radius: 50px;
background: rgb(225, 250, 255);
padding: 20px;
margin: auto;
text-align: center;
}
.table{
width: 70%;
box-shadow: 0 0 3px 2px rgb(94, 196, 255);
border-radius: 50px;
background: rgb(225, 250, 255);
padding: 20px;
margin: auto;
text-align: center;
}
.table table {
width: 100%;
border: 1px solid black;
}
.table table th, .table table td {
border: 1px solid black;
padding: 5px;
}
.row{
background-color: rgb(94, 196, 255);
color: white;
font-weight: bold;
text-shadow: 1px 1px 1px rgb(0, 81, 255);
width: 25%;
/* display: flex; */
/* justify-content: flex-start; */
}
.timeslots-container{
text-align: left;
padding: 0 1.5rem;
}
.rsvp{
font-family : Sentil;
font-weight: bold;
font-size: 16px;
color: white;
background-color: rgb(94, 196, 255);
text-align: center;
height: 25px;
border-radius: 9px;
box-shadow: 0 0 3px 2px lightblue;
width: 25%;
}
.optgroup {
font-family: 'Times New Roman', serif;
font-size:40px; }
/* Index time slots */
.timeslot{
display: inline-block;
margin-right: 1.5rem;
}
/* Logout Form */
#logout-form {
display: inline-block;
position: absolute;
top: 0;
right:0;
}