-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
154 lines (133 loc) · 3.49 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
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
/* Define styles for unvisited links */
a:link {
color: blue;
text-decoration: none; /* Remove underline if desired */
}
/* Define styles for visited links */
a:visited {
color: blue; /* Set the color to blue for visited links */
}
/* Define styles for hovered links */
a:hover {
color: purple; /* Change color on hover if desired */
}
#home-box {
position: absolute;
top: 0;
left: 0;
background-color: #007bff; /* Blue background color, you can change this */
color: #fff; /* Text color */
padding: 10px; /* Adjust padding as needed */
}
#home-box a {
text-decoration: none;
color: #fff; /* Link color */
font-weight: bold;
font-size: 18px;
}
#education-box {
position: absolute;
top: 0;
left: 67px; /* Adjust the left value to move the Education block to the right */
background-color: #007bff; /* Blue background color, you can change this */
color: #fff; /* Text color */
padding: 10px; /* Adjust padding as needed */
}
#education-box a {
text-decoration: none;
color: #fff; /* Link color */
font-weight: bold;
font-size: 18px;
}
#experience-box {
position: absolute;
top: 0;
left: 168px; /* Adjust the left value to move the Education block to the right */
background-color: #007bff; /* Blue background color, you can change this */
color: #fff; /* Text color */
padding: 10px; /* Adjust padding as needed */
}
#experience-box a {
text-decoration: none;
color: #fff; /* Link color */
font-weight: bold;
font-size: 18px;
}
/* Style for the project dropdown container */
#project-box {
position: absolute;
top: 0;
left: 277px; /* Adjust the left value to position the dropdown */
background-color: #007bff;
color: #fff;
padding: 5px;
border-radius: 5px;
}
/* Style for the block label */
.block-label {
display: block;
font-weight: bold;
margin-bottom: 5px;
}
/* Style for the block select element */
.block-select {
border: none;
padding: 5px 10px;
border-radius: 5px;
background-color: #007bff; /* Background color for the dropdown */
color: #fff; /* Text color for the dropdown */
font-weight: bold;
font-size: 18px;
}
/* Remove the default dropdown arrow */
.block-select::-ms-expand {
display: none;
}
/* Style for the block select on hover/focus */
.block-select:hover, .block-select:focus {
outline: none;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.separator {
width: 100%;
height: 1px;
background-color: #ccc; /* You can change the color to your preference */
margin: 20px 0; /* Adjust margin as needed to control the spacing */
}
.education-block {
text-align: center;
margin: 0 auto; /* Center the block horizontally */
}
header {
margin-top: 50px;
text-align: center; /* Center-align the text inside the header */
}
.center {
text-align: center;
}
.center table {
margin: 0 auto;
}
.image-container {
display: flex;
justify-content: space-between;
align-items: center;
}
.image-container img {
max-width: 25%; /* You can adjust the width as needed */
height: auto;
}
#scrollToTopButton {
display: none;
position: fixed;
bottom: 20px;
right: 20px;
font-size: 24px;
background-color: #007bff;
color: #fff;
border: none;
border-radius: 50%;
width: 40px;
height: 40px;
cursor: pointer;
}