style.css 1.03 KB
Newer Older
1
@charset "UTF-8";
Kang Donghun committed
2
#main-ttl{
Kang Donghun committed
3
  margin-top: 80px;
4
}
Kang Donghun committed
5
@media screen and (max-width: 575px) {
Kang Donghun committed
6
  #main-ttl {
Kang Donghun committed
7 8
    margin-top: 60px;
  }
9
}
Kang Donghun committed
10 11 12 13

/* no image */
.not-found-img{
  max-width: 100px;
14
}
Kang Donghun committed
15 16 17 18

/* dashboard */
ul.dashboard-menu li:hover{
  background-color: #f8f9fa;
19
}
Kang Donghun committed
20 21
ul.dashboard-menu li img{
  width: 50px;
22
}
Kang Donghun committed
23 24 25 26
@media screen and (max-width: 575px) {
  ul.dashboard-menu li img{
    width: 40px;
  } 
27 28
}

Kang Donghun committed
29
/* dashboard setting */
30 31 32 33 34 35 36 37 38 39 40
.setting-table-wrap table {
    width: 100%;
}
.setting-table-wrap th {
    padding: 0.8rem;
}
.setting-table-wrap td {
    width: 80px;
    padding: 0.8rem;
}

Kang Donghun committed
41 42
/* message list */
ul.message-list li.unread{
43 44
  font-weight: bold;
}
Kang Donghun committed
45 46
ul.message-list li.read{
  background-color: #f8f9fa;
47 48
}

Kang Donghun committed
49 50 51
/* task list */
.task-list li a > div:nth-of-type(2){
  min-height: 45px;
52
}
Kang Donghun committed
53 54 55 56
.view-block {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  column-gap: 10px;
57
}
Kang Donghun committed
58 59 60
@media screen and (max-width: 767px) {
  .view-block {
      grid-template-columns: repeat(2,1fr);
61 62
  }
}
63 64 65 66 67 68

.error {
  font-size: 13px;
	color: #FF0000;
	font-weight: bolder;
}