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
.nav-links { | |
text-decoration: none; | |
color: grey; | |
margin: 1rem 1.5rem; | |
font-size: 1.1rem; | |
font-weight: bold; | |
position: relative; /* Ensure proper positioning of pseudo-element */ | |
} | |
.nav-links::before { |
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
/* ALL BUTTONS HOVER STYLES AND TRANSITIONS */ | |
.workBtns, | |
.formBtn { | |
transition-property: background-color, color; | |
transition-duration: 0.4s; | |
transition-delay: 0.1s, 0.2s; | |
} | |
.workBtns:hover, | |
.formBtn:hover { |
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
require "active_support/core_ext/integer/time" | |
Rails.application.configure do | |
# Settings specified here will take precedence over those in config/application.rb. | |
# Code is not reloaded between requests. | |
config.enable_reloading = false | |
# Eager load code on boot. This eager loads most of Rails and | |
# your application in memory, allowing both threaded web servers |
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
/* Hide the default date picker icon in Chrome, Safari, and Edge */ | |
input[type="date"]::-webkit-calendar-picker-indicator { | |
opacity: 0; | |
position: absolute; | |
left: 0; /* Ensures the calendar still shows up */ | |
width: 100%; | |
height: 100%; | |
cursor: pointer; | |
} |
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
input[type="search"]:-webkit-autofill, | |
input:-webkit-autofill:hover, | |
input:-webkit-autofill:focus, | |
textarea:-webkit-autofill, | |
textarea:-webkit-autofill:hover, | |
textarea:-webkit-autofill:focus, | |
select:-webkit-autofill, | |
select:-webkit-autofill:hover, | |
select:-webkit-autofill:focus { | |
background-color: rgb(13, 12, 0) !important; |
OlderNewer