-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
90 lines (78 loc) · 1.58 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
color: black;
}
body {
min-height: 100vh;
height: auto;
width: 100%;
background: linear-gradient(rgba(0, 0, 0, 0.678), rgba(0, 0, 0, 0.527)), url('kidreading.jpg');
background-position: center;
background-size: cover;
background-repeat: no-repeat;
}
center {
color: whitesmoke;
text-decoration: solid;
margin-top: 50px;
font-size: x-large;
text-transform: uppercase;
}
label {
color: whitesmoke;
}
.prayer-form {
background-color: transparent;
/* width: 350px; */
margin: auto;
display: block;
padding: 20px;
color: whitesmoke;
margin-left: 10px;
/* float: left; */
}
.prayer-form input,
.inp {
margin: 10px;
border-radius: 20px;
padding: 10px;
background-color: transparent;
border-color: white;
color: whitesmoke;
}
::placeholder {
/* Firefox */
color: whitesmoke;
opacity: 1;
}
:-ms-input-placeholder {
/* Internet Explorer 10-11 */
color: whitesmoke;
}
::-ms-input-placeholder {
/* Microsoft Edge */
color: whitesmoke;
}
/* BUTTON */
#getTime {
padding: 10px;
border-radius: 20px;
background-color: whitesmoke;
border-color: whitesmoke;
}
#getTime:hover {
background-color: rgb(124, 149, 155);
border-color: whitesmoke;
}
th {
color: whitesmoke;
padding: 10px;
}
tbody td {
min-height: 500px;
overflow: auto;
color: whitesmoke;
}