x || !x == true # Tautology
x && !x == false # Contradiction
true && x == x # Identity law
false || x == x # Identity law
true || x == true # Nullification law
false && x == false # Nullification law
x && x == x # Idempotent law
x || x == x # Idempotent law
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
&::-webkit-scrollbar-track { | |
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); | |
background-color: #F5F5F5; | |
border-radius: $ip-scrollbar-height; | |
} | |
&::-webkit-scrollbar{ | |
height: $ip-scrollbar-height; | |
background-color: #F5F5F5; | |
} |
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
<html> | |
<head> | |
<style> | |
table { | |
border-collapse: collapse; | |
} | |
th { | |
padding: 5px; | |
} | |
td { |