-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3d6f77d
commit 1c871bb
Showing
1 changed file
with
9 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,8 @@ | |
<title>Site em Manutenção</title> | ||
<!-- Importando a fonte JetBrains Mono com ligaduras ativadas --> | ||
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet"> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/distr/fira_code.css"> | ||
|
||
|
||
<style> | ||
/* Definições de estilos gerais */ | ||
|
@@ -32,8 +34,8 @@ | |
text-transform: uppercase; | ||
line-height: 1.2; | ||
animation: pulse 1.5s ease-in-out infinite; | ||
font-feature-settings: "liga" 1; /* Habilitando ligaduras */ | ||
font-variant-ligatures: common-ligatures contextual; /* Ativa ligaduras comuns e contextuais */ | ||
/* font-feature-settings: "liga" 1; /* Habilitando ligaduras */ | ||
/* font-variant-ligatures: common-ligatures contextual; /* Ativa ligaduras comuns e contextuais */ | ||
} | ||
|
||
/* Animação de pulsação para a mensagem */ | ||
|
@@ -44,9 +46,11 @@ | |
} | ||
|
||
/* Aplicando ligaduras na fonte */ | ||
code, pre { | ||
font-feature-settings: "liga" 1; /* Habilitando ligaduras */ | ||
font-variant-ligatures: common-ligatures contextual; /* Ativa ligaduras comuns e contextuais */ | ||
/* Specify in CSS */ | ||
h1, code, pre { font-family: 'Fira Code', monospace; } | ||
|
||
@supports (font-variation-settings: normal) { | ||
h1, code, pre { font-family: 'Fira Code VF', monospace; } | ||
} | ||
</style> | ||
</head> | ||
|