-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
78 lines (66 loc) · 1.14 KB
/
style.css
File metadata and controls
78 lines (66 loc) · 1.14 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
body {
font-family: "Open Sans", sans-serif;
font-size: 16px;
}
textarea {
background: transparent;
border: none;
resize: none;
color: #000000;
border-left: 1px solid black;
padding: 10px;
}
/* .jumbotron {
text-align: center;
background-color: transparent;
color: rgb(105, 105, 105);
border-radius: 0;
border-bottom: 10px solid black;
} */
.description {
white-space: pre-wrap;
}
.time-block {
border-radius: 15px;
}
.row {
border-top: 1px solid white;
}
.hour {
background-color: lightblue;
color: #000000;
border-top: 1px dashed #000000;
}
.past {
background-color: #10c6e6;
color: white;
}
.present {
background-color: #ff6961;
color: white;
}
.future {
background-color: #77dd77;
color: white;
}
.saveBtn {
border-left: 1px solid black;
border-top-right-radius: 15px;
border-bottom-right-radius: 15px;
background-color: #06aed5;
color: white;
}
.saveBtn i:hover {
font-size: 20px;
transition: all 0.3s ease-in-out;
}
.time {
background-color: #000000;
border-radius: 30px;
margin: 0 auto;
width: 50%;
padding: 10px;
color: white;
font-size: 20px;
margin-top: 20px;
}