-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
90 lines (78 loc) · 1.7 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
body {
font-family: "Open Sans", sans-serif;
font-size: 16px;
line-height: 1;
background: radial-gradient(circle at 10% 20%, rgba(216, 241, 230, 0.46) 0.1%, rgba(233, 226, 226, 0.28) 90.1%);
}
textarea {
background: transparent;
border: none;
resize: none;
color: #000000;
border-left: 1px solid black;
padding: 10px;
}
.jumbotron {
text-align: center;
margin: 25px;
padding: 0;
color: #0f100f;
border: 20px outset rgba(28, 53, 70, 0.5);
border-radius: 20px;
background-color: #dfcdc3;
}
.display-3 {
text-shadow: 51px 8px 5px rgba(15, 16, 15, 0.6);
color: #0f100f;
padding-bottom: 12px;
}
.description {
white-space: pre-wrap;
}
.time-block {
text-align: center;
border-radius: 15px;
padding-bottom: 85px;
}
.row {
white-space: pre-wrap;
height: 80px;
border-top: 1px solid white;
}
.hour {
background-color: #ff9a3c;
color: bold, #000000;
border-top: 1px solid #000000;
}
.past {
background-color: #d3d3d3;
color: rgb(17, 16, 16);
box-shadow: 47px 47px 34px 6px rgba(66, 86, 49, 0.4);
}
.present {
background-color: #c67a76;
color: rgb(14, 13, 13);
box-shadow: 47px 47px 34px 6px rgba(66, 86, 49, 0.4);
}
.future {
background-color: #719192;
color: rgb(22, 21, 21);
box-shadow: 47px 47px 34px 6px rgba(66, 86, 49, 0.4);
}
.saveBtn {
border-left: 1px solid rgb(28, 20, 239);
border-top-right-radius: 15px;
border-bottom-right-radius: 15px;
background-color: #a2ddea;
color: rgb(30, 28, 28) solid;
justify-content: center;
align-items: center;
text-align: center;
transition: all 0.3s ease;
box-shadow: 47px 47px 34px 6px rgba(66, 86, 49, 0.4);
padding-top: 2vh;
}
.saveBtn:hover {
font-size: 20px;
background: #e0ffcd;
}