# “+ 새 주제” 버튼의 스타일을 “답글” 버튼과 일치하게 변경

**URL:** https://meta.discourse.org/t/change-new-topic-button-to-match-styling-of-reply-button/147502
**Category:** Support
**Created:** [4월 10, 2020, 3:08오전 UTC](https://meta.discourse.org/t/change-new-topic-button-to-match-styling-of-reply-button/147502 "2020-04-10T03:08:42Z")
**Posts on this page:** 1
**Showing post:** 3

<div class="post-metadata">

### Author: ![jord8on](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/jord8on/32/166809_2.png) [@jord8on](https://meta.discourse.org/u/jord8on)
#### Post date: [4월 10, 2020, 6:10오전 UTC](https://meta.discourse.org/t/change-new-topic-button-to-match-styling-of-reply-button/147502/3 "2020-04-10T06:10:02Z")

</div>

정말 훌륭한 답변입니다!!! 정말 감사합니다!

CSS 관련해서 조언을 한 가지 더 구할 수 있을까요… 아래 두 코드 조각을 가장 잘 최소화(minify)하는 방법은 무엇일까요?:

### 헤더의 [+ 새 주제] 버튼 색상 변경

이 헤더 버튼은 [(모든 페이지에 (+ 새 주제) 버튼 추가) 테마](https://meta.discourse.org/t/new-topic-button-on-all-pages/84551) 때문에 존재합니다.

```
.header-buttons .btn.btn-default {
      background: #00ccff;
      color: #fff;
      font-weight: 600;
  }
.header-buttons .btn.btn-default svg {
      color: #fff !important;
  }
.header-buttons .btn.btn-default:hover {
      background: #00a3cc;
  }

```

### 카테고리 및 태그 페이지의 [+ 새 주제] 버튼 색상 변경

```
button#create-topic {
      background: #00ccff;
      color: #fff;
      font-weight: 600;
  }
button#create-topic svg {
      color: #fff !important;
  }
button#create-topic:hover {
      background: #00a3cc;
  }

```

---

_[View the full topic](https://meta.discourse.org/t/change-new-topic-button-to-match-styling-of-reply-button/147502)._
