-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
47 lines (42 loc) · 882 Bytes
/
styles.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
body {
font-family: 'Arial', sans-serif;
background: linear-gradient(135deg, #e0c3fc, #8ec5fc);
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.container {
background: rgba(138, 43, 226, 0.1); /* Soft lavender with opacity */
border-radius: 12px;
padding: 20px;
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
text-align: center;
max-width: 400px;
max-height: 400px;
overflow: auto;
}
#time {
font-size: 2em;
margin-bottom: 20px;
color: #4a4a4a;
}
#verse {
font-size: 1.2em;
color: #333;
word-wrap: break-word;
}
input[type="file"] {
margin-top: 20px;
padding: 10px;
border: none;
background: #8a2be2;
color: #fff;
font-size: 1em;
cursor: pointer;
border-radius: 5px;
}
input[type="file"]:hover {
background: #6a1bb0;
}