Movendo todos os estilos de CSS para global/css/style.css

This commit is contained in:
Luiz Otávio
2023-04-24 09:17:46 -03:00
parent 5cd6cc2c0f
commit 2a15354bc4
4 changed files with 6 additions and 2 deletions

View File

@@ -5,7 +5,6 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>{{ title }}Site do Luiz</title>
<link rel="stylesheet" href="{% static 'home/css/blue.css' %}">
<link rel="stylesheet" href="{% static 'global/css/red.css' %}">
<link rel="stylesheet" href="{% static 'global/css/style.css' %}">
</head>
<body>

View File

@@ -0,0 +1,5 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}