-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
92 lines (80 loc) · 1.42 KB
/
style.css
File metadata and controls
92 lines (80 loc) · 1.42 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Roboto", sans-serif;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: #f5f5f5;
position: relative;
overflow: hidden;
}
.container {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border-radius: 20px;
padding: 40px 50px;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
text-align: center;
max-width: 600px;
width: 90%;
position: relative;
z-index: 1;
}
.logo {
max-width: 400px;
height: auto;
margin-bottom: 20px;
border-radius: 20px;
filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}
h1 {
color: #333;
font-size: 28px;
font-weight: 700;
margin-bottom: 15px;
}
.form-box {
margin-top: 20px;
}
label {
display: block;
font-size: 16px;
font-weight: 500;
color: #555;
margin-bottom: 15px;
}
.input-file {
width: 100%;
padding: 12px;
font-size: 14px;
border: 2px solid #ddd;
border-radius: 8px;
background: white;
cursor: pointer;
transition: all 0.3s ease;
}
.input-file:hover {
border-color: #764ba2;
}
.input-file:focus {
outline: none;
border-color: #667eea;
box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}
#NameText {
display: inline-block;
transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-out {
opacity: 0;
transform: translateY(10px);
}
.fade-in {
opacity: 1;
transform: translateY(0);
}