-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
66 lines (57 loc) · 1.15 KB
/
styles.css
File metadata and controls
66 lines (57 loc) · 1.15 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
body {
font-family: Arial, sans-serif;
padding: 20px;
width: 250px;
background-color: #f4f4f9;
color: #333;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
}
#urlInput {
width: 100%;
padding: 10px;
margin-bottom: 10px;
border: 1px solid #ccc;
border-radius: 4px;
}
#shortenButton {
padding: 10px 20px;
background-color: #007bff;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
}
#shortenButton:hover {
background-color: #0056b3;
}
.result-container {
display: none;
flex-direction: column;
align-items: center;
margin-top: 10px;
}
#result {
width: 100%;
padding: 10px;
background-color: #333;
color: white;
border: none;
border-radius: 4px;
text-align: center;
}
#copyButton {
margin-top: 10px;
padding: 5px 10px;
background-color: #28a745;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
}
#copyButton:hover {
background-color: #218838;
}