forked from abhipariharr/Project_Codify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaskques.css
45 lines (39 loc) · 960 Bytes
/
askques.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
.button-container {
display: flex;
justify-content: center;
gap: 10px;
align-items: center;
}
.file-input {
max-width: 400px; /* Set a max width for the file input container */
}
.file-input .input-group-text {
background-color: blue;
color: white;
border-radius: 12px;
cursor: pointer;
padding: 5px 10px; /* Smaller padding */
}
.submit-btn {
color: white;
background-color: blue;
border-radius: 12px;
padding: 5px 15px; /* Smaller padding */
cursor: pointer;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.submit-btn:hover {
transform: scale(1.05);
box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
}
/* navbar buttons hover effect */
.head:hover {
transform: scale(1.12);
/* Slight size increase */
/* Larger black shadow on hover */
}
.footer-link {
text-decoration: none;
color: #111;
text-align: start;
}