-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
67 lines (59 loc) · 1.26 KB
/
style.css
File metadata and controls
67 lines (59 loc) · 1.26 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
67
/* General Page Styling */
body {
background: linear-gradient(to bottom, #000a30, #020f50);
color: white;
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
display: flex;
}
/* Sidebar Navigation */
.sidebar {
width: 200px;
height: 100vh;
background: rgba(10, 10, 50, 0.9);
padding-top: 20px;
position: fixed;
left: 0;
top: 0;
box-shadow: 2px 0 10px rgba(255, 255, 255, 0.2);
}
.sidebar button {
display: block;
width: 90%;
background: #1a1a6f;
border: 1px solid #ffffff;
color: white;
padding: 10px;
border-radius: 5px;
margin: 10px auto;
cursor: pointer;
transition: 0.3s ease;
}
.sidebar button:hover {
background: #2a2adf;
box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
/* Content Area */
.content {
margin-left: 220px;
width: calc(100% - 220px);
padding: 20px;
text-align: center;
}
/* Tab Content (Hidden by Default) */
.tab-content {
display: none;
}
.active {
display: block;
}
/* Processed Image */
img {
border: 2px solid #ffffff;
border-radius: 10px;
box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
width: 80%;
max-width: 600px;
margin-top: 20px;
}