Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
31 |
Tags
- 처음부터다시배우는웹기획
- AICE시험후기
- 생활코딩html
- 코린이독학
- 도그냥
- html독학
- 서비스기획스쿨
- 기획관련도서
- 웬즈데잇
- HTML공부
- html
- 기획자도서추천
- 피그마
- 스파르타코딩클럽
- SW캠프비전공자후기
- 기획자책
- 이미준PO
- 기획공부
- 도그냥강연
- Til
- 생활코딩
- css생활코딩
- SW캠프솔직후기
- SQL
- css독학
- AICEBASICE
- sql독학
- SW캠프단점
- SQLD공부방법
- SW캠프장점
Archives
- Today
- Total
브리의 성장기
[TIL] 221214 본문
728x90
😀 TIL #221214
- 스파르타 코딩클럽 웹개발 종합반 1주차
1주차 8회~12회 강의 수강
* 부트스트랩 사용한 CSS
* 모바일 버전 쉽게 만들기, max-size max-width max-height 설정
* div(이름 : bytitle) 안에 button 선택 지정
* button hover {}
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"></script>
<title>스파르타코딩클럽 | 부트스트랩 연습하기</title>
<link href="https://fonts.googleapis.com/css2?family=Gowun+Dodum&display=swap" rel="stylesheet">
<style>
* {
font-family: 'Gowun Dodum', sans-serif;
}
.mytitle {
background-color: green;
width:100%;
height:250px;
background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://movie-phinf.pstatic.net/20210715_95/1626338192428gTnJl_JPEG/movie_image.jpg);
background-position: center;
background-size:cover;
color:white;
display:flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.mytitle > button {
width: 200px;
height: 50px;
background-color: transparent;
color: white;
border-radius: 50px;
border: 1px solid white;
margin-top: 10px;
}
.mytitle > button:hover{
border: 2px solid whitesmoke;
}
.mycomment {
color: gray;
}
.wrap {
max-size: 1200px;
size: 95%;
margin: 20px auto 0px auto;
}
.mydata {
max-width: 500px;
width: 95%;
margin: 20px auto 20px auto;
padding: 20px;
box-shadow: 0px 0px 3px 0px gray;
}
.mybtn {
margin: 20px auto 0px auto;
display:flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
.mybtn > button {
margin-right: 15px;
}
</style>
</head>
<body>
<div class="mytitle">
<h1>내 생애 최고의 영화들</h1>
<button>영화 기록하기 💖</button>
</div>
<div class="mydata">
<div class="form-floating mb-3">
<input type="email" class="form-control" id="floatingInput" placeholder="name@example.com">
<label for="floatingInput">영화 URL</label>
</div>
<div class="input-group mb-3">
<label class="input-group-text" for="inputGroupSelect01">별점</label>
<select class="form-select" id="inputGroupSelect01">
<option selected>선택하기</option>
<option value="1">⭐</option>
<option value="2">⭐⭐</option>
<option value="3">⭐⭐⭐</option>
</select>
</div>
<div class="form-floating">
<textarea class="form-control" placeholder="Leave a comment here" id="floatingTextarea2" style="height: 100px"></textarea>
<label for="floatingTextarea2">코멘츠</label>
</div>
<div class="mybtn">
<button type="button" class="btn btn-dark">기록하기</button>
<button type="button" class="btn btn-light">닫기</button>
</div>
</div>
<div class="wrap">
<div class="row row-cols-1 row-cols-md-4 g-4">
<div class="col">
<div class="card h-100">
<img src="https://movie-phinf.pstatic.net/20210728_221/1627440327667GyoYj_JPEG/movie_image.jpg"
class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">영화 제목입니다</h5>
<p class="card-text">영화 내용입니다.</p>
<p>⭐⭐⭐</p>
<p class="mycomment">여기는 코멘트입니다.</p>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<img src="https://movie-phinf.pstatic.net/20210728_221/1627440327667GyoYj_JPEG/movie_image.jpg"
class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">영화 제목입니다</h5>
<p class="card-text">영화 내용입니다.</p>
<p>⭐⭐⭐</p>
<p class="mycomment">여기는 코멘트입니다.</p>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<img src="https://movie-phinf.pstatic.net/20210728_221/1627440327667GyoYj_JPEG/movie_image.jpg"
class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">영화 제목입니다</h5>
<p class="card-text">영화 내용입니다.</p>
<p>⭐⭐⭐</p>
<p class="mycomment">여기는 코멘트입니다.</p>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<img src="https://movie-phinf.pstatic.net/20210728_221/1627440327667GyoYj_JPEG/movie_image.jpg"
class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">영화 제목입니다</h5>
<p class="card-text">영화 내용입니다.</p>
<p>⭐⭐⭐</p>
<p class="mycomment">여기는 코멘트입니다.</p>
</div>
</div>
</div>
</div>
</div>
</body>
</html>
가독성이 살짝 엉망인듯한 브리 작품
✨ 오늘 한 일
-뉴스레터 읽기
'조용한 퇴사'라는 워딩을 처음 들어봤다. 각자 생각하는 구체적인 의미는 조금씩 다를 수 있지만, 큰 틀에서는 회사에서 해야 할 최소한의 일만 하는 것을 뜻한다. 대표적인 예로 초과근무 거부하기, 업무를 찾아서 하거나 추가로 맡지 않기, 필수로 가야 하는 행사만 참여하기 등.
대한민국 직장인 중 70% 는 업무에 충분히 몰두하고 있지 않다고 한다. 일이 삶의 전부가 아니고, 워라밸을 적절히 유지해야 하는건 동의한다. 하지만 업무와 나를 단절짓고 자기계발 하지 않으면 5년뒤 혹은 10년뒤 사회인으로써의 나에게 기대할 수 있는 것은 무엇이 있을까?
아래 자료는 갤럽에서 전 세계 150개 나라의 노동자 1000만 명을 대상으로 설문하여, 업무 몰입도에 직접적으로 영향을 미치는 관리자의 행동을 12가지로 정리한 것이다. 앞으로 관리자(리더)의 임무는 소프트스킬을 향상시켜 조직원을 조용한 퇴사로부터 막는 것이 아닐까 싶다. 🙄
728x90
'종종 올리는 요즘 근황' 카테고리의 다른 글
[TIL] 221217 (2) | 2022.12.17 |
---|---|
[TIL] 221215 (0) | 2022.12.15 |
[TIL] 221213 (0) | 2022.12.13 |
[TIL] 221203 (0) | 2022.12.03 |
[TIL] 221129 (0) | 2022.11.29 |
Comments