-
Notifications
You must be signed in to change notification settings - Fork 1
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
e81653d
commit d17882c
Showing
10 changed files
with
65 additions
and
11 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
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
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
Empty file.
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
console.log("HELLO WORLDSSS"); |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
console.log("HELLO WORLDSSS"); |
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 |
---|---|---|
@@ -1,3 +1,44 @@ | ||
* { | ||
font-family: "Poppins", sans-serif; | ||
} | ||
|
||
div > input { | ||
background-color: #F2F2F2; | ||
padding-top: 0.75rem; /* py-3 */ | ||
padding-bottom: 0.75rem; | ||
padding-left: 2.5rem; /* px-10 */ | ||
padding-right: 2.5rem; | ||
color: black; | ||
font-weight: 600; /* font-semibold */ | ||
border-radius: 1.5rem; /* rounded-3xl */ | ||
display: flex; | ||
justify-content: center; | ||
width: 100%; | ||
} | ||
|
||
.form-style form input, form textarea, form select { | ||
background-color: #F2F2F2; | ||
padding-top: 0.75rem; /* py-3 */ | ||
padding-bottom: 0.75rem; | ||
padding-left: 2.5rem; /* px-10 */ | ||
padding-right: 2.5rem; | ||
color: black; | ||
font-weight: 600; /* font-semibold */ | ||
border-radius: 1.5rem; /* rounded-3xl */ | ||
display: flex; | ||
justify-content: center; | ||
} | ||
.form-style form input:focus, form textarea:focus, form select:focus { | ||
outline: none; | ||
border-color: #674ea7; | ||
box-shadow: 0 0 0 3px #674ea7; | ||
} | ||
@keyframes shine { | ||
0% { background-position: -200% 0; } | ||
100% { background-position: 200% 0; } | ||
} | ||
.animate-shine { | ||
background: linear-gradient(120deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.3)); | ||
background-size: 200% 100%; | ||
animation: shine 3s infinite; | ||
} |
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 |
---|---|---|
|
@@ -5,17 +5,20 @@ | |
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
|
||
<link rel="shortcut icon" type="image/png" href="{% static 'assets/icon.png' %}" > | ||
<link rel="preconnect" href="https://fonts.googleapis.com"> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | ||
<link href="https://fonts.googleapis.com/css2?family=Manrope:[email protected]&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet"> | ||
|
||
<link rel="stylesheet" href="{% static "styles/main.css" %}"> | ||
<link rel="shortcut icon" type="image/png" href="{% static 'assets/icon.png' %}" > | ||
<script src="https://cdn.tailwindcss.com"></script> | ||
<script src="{% static "js/index.js " %}"></script> | ||
|
||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"> | ||
|
||
<script src="https://cdn.tailwindcss.com"></script> | ||
{% block meta %}{% endblock meta %} | ||
|
||
<title>Eventyog</title> | ||
|
||
<script src="{% static "js/main.js" %}"></script> | ||
</head> | ||
<body class="font-Poppins"> | ||
<main class="flex flex-col min-h-screen"> | ||
|
@@ -29,6 +32,9 @@ | |
{% if show_footer %} | ||
{% include "ds/footer.html" %} | ||
{% endif %} | ||
|
||
</main> | ||
</body> | ||
<script src="{% static "js/main.js" %}"></script> | ||
{% block scripts %}{% endblock scripts %} | ||
</main> |
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