틀:연습장:아바투르너마저/1/styles.css: 두 판 사이의 차이

편집 요약 없음
(내용을 ".mw-body { background-size: cover; background-repeat: no-repeat; background-position: center; background-attachment: fixed; }"(으)로 바꿈)
태그: 대체됨
 
(같은 사용자의 중간 판 26개는 보이지 않습니다)
1번째 줄: 1번째 줄:
.music-player {
.mw-body {
  display: flex;
   background-size: cover;
  align-items: center;
   background-repeat: no-repeat;
   background-color: #222;
   background-position: center;
  border: 1px solid #fff;
   background-attachment: fixed;
  border-radius: 5px;
  padding: 10px;
  width: 100%;
  box-shadow: 0px 2px 5px rgba(0,0,0,0.2);
}
 
.play-button {
  width: 10px;
  height: 10px;
   background-color: #dd0000;
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
 
.progress-bar-container {
  flex: 1;
   background-color: #ddd;
  height: 8px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
 
.progress-bar {
  height: 40%;
  width: 0;
   background-color: #4CAF50;
  transition: width 0.2s;
}
}

2025년 1월 4일 (토) 02:55 기준 최신판

.mw-body {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}