-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
63 lines (54 loc) · 1.1 KB
/
style.css
File metadata and controls
63 lines (54 loc) · 1.1 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
body {
background-image: linear-gradient(to bottom right, #f0f4c3, #b3e5fc);
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center center;
}
.container {
max-width: 800px;
margin: 32px auto;
padding: 32px;
margin: 0 auto;
text-align: center;
font-family: Georgia, "Times New Roman", Times, serif;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
h1,
.button {
font-family: "Helvetica Neue", sans-serif;
}
form {
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 24px;
}
label,
input[type="file"] {
transition: all 0.3s ease-in-out;
}
label:hover,
input[type="file"]:hover {
color: #3e8e41;
cursor: pointer;
}
.button {
font-size: 24px;
font-weight: bold;
background-color: #af7f4c;
color: #fff;
border: none;
padding: 16px 32px;
border-radius: 4px;
cursor: pointer;
transition: all 0.3s ease-in-out;
}
.button:hover {
background-color: #3e8e41;
}
#result {
margin-top: 48px;
font-size: 24px;
line-height: 1.5;
}