This file contains hidden or 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
Name | Year | Date Watched | |
---|---|---|---|
The Rookie | 2002 | 2025-01-10 | |
Elemental | 2023 | 2024-08-19 | |
Dune: Part Two | 2024 | 2024-03-17 | |
Barbie | 2023 | 2024-03-14 | |
Being John Malkovich | 1999 | 2024-03-12 | |
Knives Out | 2019 | 2024-03-12 | |
The Breakfast Club | 1985 | 2024-03-12 | |
Free Guy | 2021 | 2024-03-11 | |
The Iron Claw | 2023 | 2024-03-10 |
This file contains hidden or 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
/*! _variables-colors.less */ | |
// Colors | |
@white: #fff; | |
@black: #000; | |
// Purple | |
@purple: #a5185a; |
This file contains hidden or 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
/*! | |
* the-movie-spoiler.css | |
*/ | |
/** | |
* Main | |
*/ | |
body { | |
background-image: none; |
This file contains hidden or 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
// | |
// background-color-states A background color mixin for setting hover and active states | |
// | |
// @param {color} @base The base color for the element | |
// @param {color} @hover The hover color for the element | |
// @param {color} @active The active color for the element | |
// | |
.background-color-states(@base, @hover: softlight(@base, #444), @active: softlight(@hover, #222)) { | |
background-color: @base; |
This file contains hidden or 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
/** | |
* rte.css contains styles for rich text editor | |
*/ | |
@prefix: ~"ex-rte" | |
/*#region $OOTB RTE */ | |
/*#region $ELEMENTS */ |
This file contains hidden or 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
javascript:(function(){var h,a,f;a=document.getElementsByTagName('link');for(h=0;h<a.length;h++){f=a[h];if(f.rel.toLowerCase().match(/stylesheet/)&&f.href){var g=f.href.replace(/(&|%5C?)forceReload=\d+/,'');f.href=g+(g.match(/\?/)?'&':'?')+'forceReload='+(new Date().valueOf())}}})() |
This file contains hidden or 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
(function() { | |
var files = document.querySelectorAll('.file'); | |
for (var i = 0; i < files.length; i++) { | |
var url = files[i].querySelector('.raw-url'); | |
var href = url.href; | |
href = href.replace('https://gist.github.com/', '//rawgit.com/'); | |
var path = url.pathname.split('/'); |