Toggle navigation
Toggle navigation
This project
Loading...
Sign in
김대욱
/
OSS_PROJECT
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
김대욱
2020-12-06 23:23:46 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
4e08a981c01b2c4031e97d48964912c09e17e918
4e08a981
1 parent
f5f76b9a
css v0.1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
59 additions
and
0 deletions
css/style.css
css/style.css
0 → 100644
View file @
4e08a98
/* 전체 웹사이트를 통틀어서 스타일을 정의함 */
@import
url(https://fonts.googleapis.com/earlyaccess/nanumgothic.css)
;
*
{
font-family
:
'Nanum Gothic'
}
a
{
color
:
#000000
;
text-decoration
:
none
;
}
a
:hover
{
color
:
#bbbbbb
;
text-decoration
:
none
;
}
/* 내비게이션 영역 */
.navbar-default
{
/* 배경 색상 */
background-color
:
#000000
;
border-color
:
#000000
;
}
.navbar-default
.navbar-brand
{
/* 내비게이션 제목 색상 */
color
:
#ffffff
;
}
.navbar-default
.navbar-brand
:hover
,
.navbar-default
.navbar-brand
:focus
{
/* 내비게이션 제목에 마우스를 올렸을 때 */
background-color
:
transparent
;
color
:
#bbbbbb
;
}
.navbar-default
.navbar-nav
>
.active
>
a
,
.navbar-default
.navbar-nav
>
.active
>
a
:hover
,
.navbar-default
.navbar-nav
>
.active
>
a
:focus
{
/* 현재 선택된 내비게이션 색상 이벤트 */
color
:
white
;
background-color
:
#000000
;
}
.navbar-default
.navbar-nav
>
li
>
a
:hover
,
.navbar-default
.navbar-nav
>
li
>
a
:focus
{
/* 네비게이션 글자에 마우스를 올렸을 때 */
color
:
#bbbbbb
;
}
.navbar-default
.navbar-nav
>
.open
>
a
,
.navbar-default
.navbar-nav
>
.open
>
a
:hover
,
.navbar-default
.navbar-nav
>
.open
>
a
:focus
{
/* 드랍다운이 열렸을때 마우스 색상 이벤트 */
color
:
#000000
;
background-color
:
#ffffff
;
text-decoration
:
none
;
}
.navbar-default
.navbar-nav
>
li
>
a
{
/* 네비게이션 기본 색상 */
color
:
white
;
}
@media
(
max-width
:
767px
)
{
/* 해상도가 작은데 드랍다운에 마우스를 올렸을 때 */
.navbar-default
.navbar-nav
.open
.dropdown-menu
>
li
>
a
{
color
:
#ffffff
;
}
.navbar-default
.navbar-nav
.open
.dropdown-menu
>
li
>
a
:hover
,
.navbar-default
.navbar-nav
.open
.dropdown-menu
>
li
>
a
:focus
{
color
:
#bbbbbb
;
}
}
\ No newline at end of file
Please
register
or
login
to post a comment