diff --git a/frontend/src/Apps/ResearcherProfile.vue b/frontend/src/Apps/ResearcherProfile.vue index 0c0476c..e905c27 100644 --- a/frontend/src/Apps/ResearcherProfile.vue +++ b/frontend/src/Apps/ResearcherProfile.vue @@ -1,34 +1,54 @@ @@ -82,14 +102,24 @@
- - +
-
+ +
@@ -152,5 +182,31 @@ #articles { background-color: orange; } +#search-input{ + width: 60%; + font-size: 16px; + padding: 12px 20px 12px 40px; + border: 1px solid #ddd; + margin-bottom: 12px; +} +#myUL{ + list-style-type: none; + padding: 0; + margin: 0; +} - \ No newline at end of file +#myUL li a { + border: 1px solid #ddd; /* Add a border to all links */ + margin-top: -1px; /* Prevent double borders */ + background-color: #f6f6f6; /* Grey background color */ + padding: 12px; /* Add some padding */ + text-decoration: none; /* Remove default text underline */ + font-size: 18px; /* Increase the font-size */ + color: black; /* Add a black text color */ + display: block; /* Make it into a block element to fill the whole list */ +} +#myUL li a:hover:not(.header) { + background-color: #eee; +} + +