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
/* Customize sidebar props */ | |
:root { | |
--csd-width: 200px; | |
--csd-trigger-size: 20px; | |
--csd-transition-duration: 0.5s; | |
--csd-transition-fn: cubic-bezier(.07, .95, 0, 1); | |
} | |
#sidebar-box { | |
position: relative; |
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
module ApplicativesQuestion where | |
import Prelude | |
import Data.Either | |
-- 1. Lift our function to Either datatype with valid first argument | |
let step1 = (\a b c d -> a + b + c + d) <?> (Right 1) | |
-- > :type step1 | |
-- forall t11. Either t11 (Int -> Int -> Int -> Int) |
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
.element { | |
// If the element is hidden initially, display those properties first | |
display: none; | |
visibility: hidden; | |
opacity: 0; | |
// Properties affecting visibility | |
box-sizing | |
visibility | |
overflow |