-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
45 lines (40 loc) · 847 Bytes
/
Copy pathstyle.css
File metadata and controls
45 lines (40 loc) · 847 Bytes
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
body {
font-family: Arial, Helvetica, sans-serif;
background-color: #0f172a;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
color: white;
}
.project_container {
background-color: rgba(255, 255, 255, 0.05);
padding: 30px;
border-radius: 20px;
text-align: center;
width: 320px;
}
p {
color: #a5a6d1;
}
.date_input {
padding: 10px;
border-radius: 5px;
background-color: rgba(255, 255, 255, 0.05);
color: white;
width: 80%;
border: 1px solid #6366f1;
margin-bottom: 10px;
}
.fetch_result {
background-color: #6366f1;
color: white;
padding: 10px;
width: 40%;
border: none;
border-radius: 5px;
cursor: pointer;
}
.fetch_result:hover {
background-color: #4f46e5;
}