chromium issue

This commit is contained in:
admin 2024-01-09 17:43:53 +01:00
parent 5efb00f2bc
commit e3280f5eac
2 changed files with 11 additions and 2 deletions

View file

@ -9,8 +9,8 @@ func main() {
// Define the directory where your HTML and CSS files are located
http.Handle("/", http.FileServer(http.Dir(".")))
// Start the web server on port 8080
port := 8369
// Start the web server on specfied port
port := 10369
fmt.Printf("Server is running on http://localhost:%d\n", port)
err := http.ListenAndServe(fmt.Sprintf(":%d", port), nil)
if err != nil {

View file

@ -18,6 +18,15 @@ body {
transform: translate(-50%, -50%);
}
.center-text a {
color: #3391ff; /* Set your desired link color */
text-decoration: none; /* Remove default underline */
}
.center-text a:hover {
text-decoration: underline; /* Add underline on hover */
}
.link-text a {
color: #3391ff; /* Set your desired link color */
text-decoration: none; /* Remove default underline */