forked from 21tstrow/aimsp2024tuckervaida
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfist.css
More file actions
93 lines (83 loc) · 1.75 KB
/
Copy pathfist.css
File metadata and controls
93 lines (83 loc) · 1.75 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
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
91
92
93
@keyframes gradientBG {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
body, html {
min-height: 100vh;
margin: 0;
padding: 0;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
font-family: "Poppins", sans-serif;
background: linear-gradient(-45deg, #BDB3FE, #FBCFE8, #FEF3C7, #BDB3FE);
background-size: 400% 400%;
animation: gradientBG 5.5s ease infinite;
}
h1 {
font-size: 32px;
color: #352f44;
margin-bottom: 0.25em;
}
.neweredits {
color: #fff;
margin-bottom: 2em;
padding-left: 20px;
padding-right: 20px;
font-size: 20px;
max-width: 100vw;
font-weight: bold;
text-align: center;
margin-left: 30px;
margin-right: 30px;
}
.drag-area {
font-size: 1.5em;
color: #fff;
border: 2px dashed #fff;
border-radius: 20px;
padding: 2em 5.2em;
text-align: center;
background: rgba(255, 255, 255, 0.1);
position: relative;
margin-bottom: 1em;
}
.drag-area.active {
background: rgba(255, 255, 255, 0.2);
}
.drag-area .icon {
font-size: 3em;
margin-bottom: 0.5em;
margin-left: 10px;
}
.drag-area header {
font-weight: 5px;
margin-bottom: 0.5em;
color: #38598b;
}
.drag-area button {
padding: 10px 25px;
font-size: 1em;
font-weight: 500;
border: none;
outline: none;
background: #fff;
color: #38598b;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
}
.drag-area button:hover {
background-color: #e0e0e0;
}
input[type="file"] {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
opacity: 0;
cursor: pointer;
}