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
Shader "Test/SmoothZoomTexture" | |
{ | |
Properties | |
{ | |
_MainTex ("Texture", 2D) = "white" {} | |
[KeywordEnum(Basic,Manual,Blend,Compare)]Mode("Mode", Int) = 0 | |
_Blend("Blend", Range(0,1)) = 1 | |
[Header(Mip Map)] | |
_MipMapMin("MipMap Min", Int) = 4 |
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
Shader "TextMeshPro/Pixel" { | |
Properties { | |
_MainTex ("Font Atlas", 2D) = "white" {} | |
_FaceTex ("Font Texture", 2D) = "white" {} | |
[HDR]_FaceColor ("Text Color", Color) = (1,1,1,1) | |
[HDR]_OutlineColor("Outline Color", Color) = (0,0,0,0) | |
[HDR]_DropShadowColor("Drop Shadow Color", Color) = (0,0,0,0) |
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
/** | |
* Fuzzy Search Box | |
*/ | |
html { | |
background: hsl(0,0%,15%); | |
min-height: 100%; | |
font-family: Helvetica Neue, Helvetica, Arial, sans-serif; | |
-webkit-font-smoothing: antialiased; | |
} |
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
#tooltip { | |
position: absolute; | |
left: 0px; | |
top:0px; | |
height: 40px; | |
background: #444; | |
color:#fff; | |
margin-top:-20px; | |
z-index:999; | |
-webkit-box-sizing: border-box; |