-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
75 lines (65 loc) · 1.8 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
body {
font-family: 'Arial', sans-serif;
background-color: #f0f4f8; /* Lighter background for contrast */
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
color: #333; /* Darker text for better readability */
}
.container {
background-color: #fff;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
width: 100%;
max-width: 400px; /* Adjusted for a more compact look */
padding: 20px;
text-align: center;
}
h2 {
margin-bottom: 20px; /* Add more space below the header */
color: #0052cc; /* Use Box's brand color for consistency */
}
#parameters, .rename-section, .success-message {
background-color: #e9f0ff; /* Light blue background for sections */
border-radius: 4px;
padding: 15px;
margin-bottom: 20px; /* Space between sections */
}
.parameter, .success-message p {
margin-bottom: 10px;
line-height: 1.5;
}
.parameter-key {
font-weight: bold;
}
#newFileName {
width: 60%; /* Make input field wider */
padding: 10px;
margin-right: 10px;
border: 1px solid #ccc;
border-radius: 4px;
}
#renameFileBtn {
padding: 10px 20px;
margin-top: 10px;
background-color: #007bff; /* A more vibrant blue for the button */
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s; /* Smooth transition for hover effect */
}
#renameFileBtn:hover {
background-color: #0056b3; /* Darker blue on hover */
}
.success-message {
color: #28a745; /* Green text for success messages */
}
.logo {
display: block; /* Makes the logo block-level for margin auto to work */
max-width: 80%; /* Limits the logo size to fit within the container */
height: auto; /* Maintains the aspect ratio of the logo */
margin: 0 auto 20px; /* Centers the logo horizontally and adds space below */
}