-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsuggestions.css
110 lines (96 loc) · 1.88 KB
/
suggestions.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
body, html {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
font-family: 'Helvetica Neue', Arial, sans-serif;
color: #e0e0e0;
background: transparent;
}
h1 {
color: #4fc3f7;
}
.background-iframe {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
overflow: hidden;
filter: brightness(60%);
}
.overlay {
background-color: rgba(30, 30, 30, 0.3);
color: #e0e0e0;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 0;
}
.navbar {
background-color: rgba(0, 0, 0, 0.8);
border-bottom: 1px solid #333;
padding: 15px 20px;
text-align: center;
position: fixed;
height: 100px;
top: 0;
left: 0;
width: 100%;
z-index: 2;
backdrop-filter: blur(8px);
}
.navbar a {
color: #e0e0e0;
text-decoration: none;
padding: 0 20px;
font-weight: bold;
font-size: 16px;
}
.navbar a:hover {
color: #4fc3f7;
}
.content {
margin-top: 140px;
padding: 0 20px;
z-index: 1;
position: relative;
}
.solution-section {
background-color: rgba(50, 50, 50, 0.7);
border-radius: 10px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
margin-bottom: 20px;
padding: 20px;
transition: transform 0.3s ease;
scroll-margin-top: 140px ;
}
.solution-section:hover {
transform: scale(1.02);
}
.solution-header {
font-size: 24px;
color: #4fc3f7; /* Header color */
margin-bottom: 10px;
}
.solution-content {
color: #e0e0e0; /* Light color for text */
}
.back-to-home {
display: block;
text-align: center;
margin: 20px auto;
padding: 10px 20px;
background-color: #03a9f4;
color: #fff;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
}
.back-to-home:hover {
background-color: #0288d1;
}