d718c5a372
CI / compile_and_lint (push) Failing after 0s
CI / docker_build (linux/amd64, -linux-amd64-duckdb, duckdb) (push) Failing after 0s
CI / docker_build (linux/arm64, -linux-arm64, minimal) (push) Failing after 2s
CI / docker_build (linux/arm64, -linux-arm64-duckdb, duckdb) (push) Failing after 1s
CI / docker_build (linux/amd64, minimal) (push) Failing after 1s
CI / test (, sqlite, sqlite::memory:) (push) Has been skipped
CI / test (mssql, mssql, mssql://root:Password123!@127.0.0.1/sqlpage) (push) Has been skipped
CI / test (mysql, mysql, mysql://root:Password123!@127.0.0.1/sqlpage) (push) Has been skipped
CI / test (oracle, oracle, Driver=Oracle 21 ODBC driver;Dbq=//127.0.0.1:1521/FREEPDB1;Uid=root;Pwd=Password123!) (push) Has been skipped
CI / test (postgres, odbc, Driver=PostgreSQL Unicode;Server=127.0.0.1;Port=5432;Database=sqlpage;UID=root;PWD=Password123!, true) (push) Has been skipped
CI / test (postgres, postgres, postgres://root:Password123!@127.0.0.1/sqlpage) (push) Has been skipped
CI / playwright (push) Has been skipped
CI / docker_build (linux/arm/v7, -linux-arm-v7, minimal) (push) Failing after 0s
CI / hurl_examples (push) Failing after 8s
deploy website / deploy_official_site (push) Failing after 1s
CI / hurl (${{ matrix.example }}) (push) Has been skipped
CI / docker_push (duckdb) (push) Has been cancelled
CI / docker_push (minimal) (push) Has been cancelled
CI / windows_test (push) Has been cancelled
41 lines
761 B
CSS
41 lines
761 B
CSS
#funky_text {
|
|
font-family: Arial, sans-serif;
|
|
font-size: 36px;
|
|
color: white;
|
|
background: linear-gradient(45deg, #ff4e00, #ec9f05);
|
|
padding: 10px;
|
|
border-radius: 10px;
|
|
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
|
|
transition: transform 0.3s ease-in-out;
|
|
}
|
|
|
|
#funky_text:hover {
|
|
transform: scale(1.1);
|
|
background: linear-gradient(45deg, #e5004d, #7a0180);
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
@keyframes neon-glow {
|
|
0%,
|
|
100% {
|
|
text-shadow:
|
|
0 0 10px #fa2dd1,
|
|
0 0 20px #b30890,
|
|
2px 3px 30px #ff00cc;
|
|
}
|
|
50% {
|
|
text-shadow:
|
|
0 0 1px #e48fd3,
|
|
0 0 2px #ca28aa,
|
|
0 0 8px #ff00cc;
|
|
}
|
|
}
|
|
|
|
#funky_text:hover {
|
|
animation: neon-glow 0.5s ease-in-out infinite;
|
|
}
|
|
|
|
#funky_text * {
|
|
color: inherit;
|
|
}
|