-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
89 lines (79 loc) · 1.61 KB
/
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
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
/*
Author: Ola White
Description: Greetings! This is my CSS stylesheet. Thanks for checking out my code. Don't forget to follow me on my pages:
Portfolio: https://www.olawhite.com/
Github: https://github.com/whitesoftx
Twitter: https://twitter.com/
Happy coding!
*/
body {
font-family: Arial, sans-serif;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: #f0f0f0;
height: 100vh;
margin: 0;
}
#fileInput {
display: none;
}
h2 {
color: #ad1847;
}
/* Upload button styles */
.upload-btn-wrapper {
position: relative;
overflow: hidden;
display: inline-block;
margin: 2rem;
cursor: pointer;
}
.btn {
border: 1px dashed #ad1847;
color: gray;
background-color: white;
padding: 20px; /* Set padding to increase button size */
border-radius: 10px; /* Set border-radius for rounded corners */
width: 250px; /* Set width */
height: 200px; /* Set height */
font-size: 16px;
font-weight: bold;
cursor: pointer;
}
.upload-btn-wrapper input[type="file"] {
font-size: 100px;
position: absolute;
left: 0;
top: 0;
opacity: 0;
}
#mergeBtn {
margin-top: 20px;
border: 2px solid #ad1847;
color: #fff;
background-color: #ad1847;
padding: 10px 30px;
border-radius: 50px;
font-size: 1.1rem;
cursor: pointer;
}
#mergeBtn:hover {
background-color: #46081b;
color: #fff;
border-color: #46081b;
}
footer {
position: fixed;
bottom: 0;
width: 100%;
background-color: #e0e1ebfb;
text-align: center;
padding: 15px;
}
footer a {
text-decoration: none;
color: cornflowerblue;
}