-
Notifications
You must be signed in to change notification settings - Fork 0
/
abc.css
60 lines (51 loc) · 1.21 KB
/
abc.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
body {
background-color: black;
color: white;
font-family: Arial, sans-serif;
text-align: center;
}
.button {
background-color: transparent;
color: white;
border: 1px solid white;
padding: 10px 20px;
margin: 10px;
cursor: pointer;
transition: transform 0.2s, box-shadow 0.2s;
border-radius: 5px;
}
.button:hover {
transform: scale(1.05);
box-shadow: 0 0 10px white;
}
input[type="file"] {
display: none;
}
label {
display: block;
background-color: #1e90ff;
color: white;
padding: 10px 20px;
cursor: pointer;
border: 1px solid white;
border-radius: 5px;
font-weight: bold;
margin: 10px;
box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
transition: transform 0.2s, box-shadow 0.2s;
}
label:hover {
transform: scale(1.05);
}
a {
text-decoration: none;
color: white;
border: 1px solid white;
padding: 10px 20px;
border-radius: 5px;
}
.image-preview {
max-width: 100%;
max-height: 300px;
margin-top: 20px;
}