본문 바로가기
tistory blog 의 font (글씨체) 를 가독성 높은 font 로 바꾸어 보자. tistory blog 의 font (글씨체) 를 가독성 높은 font 로 바꾸어 보자. 요즘 가독성이 괜찮다고 알려진 font 는 나눔 고딕이다.구글에서 가독성을 위해 여러가지 폰트를 지원해주는데, 아래와 같은 코드를 tistory 의 style.css 부분 가장 위에 넣어준다. @import url(http://fonts.googleapis.com/earlyaccess/nanumgothic.css); 그리고 font 정의한 곳에 모두 'Nanum Gothic' 을 가장 먼저 넣어주면 된다. tistory 페이지는 theme 에 따라 style.css 가 달라 딱 어디만 바꿔라 할 순 없지만,만약 body 부분에만 font 설정이 되어 있다면, 그 부분만 바꾸어 주면 되고,아니면 nanum gothic.. 2014. 4. 3.
[CSS] Less 란 무엇인가? [CSS] Less 란 무엇인가? Less 란 무엇인가? Less 는 CSS pre-processor 이다.CSS language 의 확장판으로, variable, mixin, function 등의 추가적인 기능을 제공하는 언어이다.유지보수가 더 좋고, theme 을 지정할 수 있고, 확장성도 좋다. ex) @base : #f938ab; .box-shadow(@style, @c) when (iscolor(@c)){-webkit-box-shadow:@style @c;-moz-box-shadow: @style @c;-box-shadow: @style @c;} .box-shadow(@style, @alpha: 50%) when (isnumber(@alpha)){.box-shadow(@style, rgba(0,.. 2014. 2. 10.
[android] ActionBar Compat 사용하기. android, ActionBar Compat 사용하기. ActionBar Compat 사용하기. 1. v7 이상의 support library 준비하기 2. Project 로 로드하여 library 로 설정 3. Activity theme 을 @style/Theme.AppCompat 으로 변경. 4. menu.xml 의 name space 변경해주기. ( actionbar 만의 feature를 사용할 경우 ) ... 5. Activity 가 ActionBarActivity 를 상속하도록 함. 6. getSupportedActionBar() 를 통해 actionbar 를 control 할 수 있고, 나머지는 같음. actionbar, actionbaractivity, actionbarcompat, act.. 2013. 11. 26.
[android] Window Backgrounds & UI Speed 출처 : 안드로이드 개발자 article Android LayoutTricks #1 (성능개선) Android Layout Tricks #2 : Reusing Layouts ( 성능개선 ) Android Layout Tricks #3 : Optimize by merging Android Layout Tricks #4 : Optimize with stubs ( 성능 최적화 ) Window Backgrounds & UI Speed - Activity 의 최상단 view 인 DecorView 는 기본적으로 ColorDrawable 이 setting 되어 있기 때문에, Activity 에 배경을 전부 덮어버리는 background 를 사용하는 경우, 쓸데없이 ColorDrawable 이 더 그려지는 효과가 있다.. 2012. 11. 28.
반응형