Stratasan is a Nashville-based company that provides intelligence on healthcare markets to hospital strategists, physician offices, community care experts, and others. We aggregate healthcare data, curate it, and provide reports and tools that aid healthcare decision-making. As an example, we give guidance to our clients looking to place a new acute care clinic.
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
@keyframes(bulge) { | |
0% { font-size: ms(-1) } | |
30% { font-size: ms(3) } | |
100% { font-size: ms(0) } | |
} | |
.class { | |
animation: bulge $transition-speed-easing 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
.class { | |
transition: color $transition-speed-easing; // preferred method | |
} | |
.class { | |
transition: opacity ($transition-speed * 2) $transition-easing; // For a slower animation | |
} | |
.class { | |
transition: color $transition-speed-easing, // multiple properties |
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
diff --git a/app/views/devise/shared/_links.erb b/app/views/devise/shared/_links.erb | |
dissimilarity index 99% | |
index 414904b..0b0b21d 100644 | |
--- a/app/views/devise/shared/_links.erb | |
+++ b/app/views/devise/shared/_links.erb | |
@@ -1,19 +1,15 @@ | |
-<%- if controller_name != 'sessions' %> | |
- <%= link_to "Sign in", new_session_path(resource_name) %><br /> | |
-<% end -%> | |
- |
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
is_leap_year = lambda x: x % 400 == 0 or (x % 100 != 0 and x % 4 == 0) |