본문 바로가기
First step/언어의 기초

[TIL]CSS 기초

by Joshua21 2021. 6. 30.

CSS 기초를 배웠다.

@import url('https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,600,700,800&display=swap');

 

* {

    font-family: 'Montserrat';

}

 

body,h1,h2 {

    margin:0px;

    padding:0px;

}



body {

    min-width: fit-content;

}

 

h1 {

    font-size:36px;

    font-weight: bold;

    font-style: italic;

}



h2 {

    font-size:20px;

    color:#282828;

    font-weight: lighter;

    margin-bottom: 16px;

    border-bottom: 1px solid #ebebeb;

    padding-bottom: 5px;

}

 

.name-text {

    font-size:16px;

    color:#7c7c7c;

    font-weight: bold;

}

 

.about-me-text {

    font-size:10px;

    line-height: 16px;

}

 

.mainbox {

    width: 610px;

    padding: 30px;

    margin: 30px;

    margin-right: auto;

    margin-left: auto;

    border: 1px solid #ebebeb;

    box-shadow: 0 1px 20px 0 rgba(0, 0, 0, 0.1);

}

 

.title-box {

    text-align: right;

}

 

section {

    margin-bottom:24px;

}

 

.float-wrap {

    overflow: hidden;

}

 

.title-text {

    font-size:11px;

    font-weight: bold;

    color: #282828;

    float: left;

}

 

.year-text{

    font-size:11px;

    font-weight: bold;

    color: #282828;

    float: right;

}

 

.desc-text {

    font-size: 9px;

}

 

.desc-subtext {

    font-size: 9px;

    color:#282828;

    padding-left:16px;

}

 

.sns-img {

    width:12px;

    height:12px;

}

 

.sns-wrap {

    text-align:right;

}

 

footer {

    text-align: center;

    background-color: #1e1e1e;

    padding: 20px;

    font-size: 12px;

    color: #919191;

}

 

'First step > 언어의 기초' 카테고리의 다른 글

1주차 인트로 변수, 표현식 및 코드  (0) 2021.07.22
깃허브에 코드로 자료 올리기  (0) 2021.07.02
[TIL]HTML 기초  (0) 2021.06.30
[TIL]파이썬에서 메일보내기  (0) 2021.06.28
[TIL] 번역기 사용하기  (0) 2021.06.27