main.css 3.68 KB
.circle {
  margin: 0 auto;
  width: 500px;
  height: 500px;
  border: 15px solid rgb(163, 151, 198);
  border-radius: 50%;
  line-height: 3em;
}
.dday {
  padding: 50px 0;
}

.wrapper {
  margin: 0 auto;
  padding: 30px;
  max-width: 1170px;
}
h1 {
  font-size: 50px;
  color : tomato;
  font-family: 'Gowun Dodum', sans-serif;
  margin-bottom: 10px;
}
h2 {
  color :white;
  font-weight: lighter;
  font-family: 'Gowun Dodum', sans-serif;
}

#title {
  color: rgb(191, 185, 211);
  font-size: 70px;
  font-family: 'Tiro Devanagari Marathi', serif;
  font-weight: 600;
  text-shadow: 4px 2px 2px rgba(178, 104, 180, 0.61);
  letter-spacing: 0.05em;
}
#comment {
  width: fit-content;
  background-color: rgba(190, 125, 87, 0.39);
  border-radius: 40px 80px / 80px 40px;

}
#detail {
  width:1000px;
  height:fit-content;
  border-radius: 40px 80px / 80px 40px;
  background-color: rgba(190, 87, 168, 0.39);
}
body {
  margin-top: 100px;
  margin-bottom: 100px;
  margin-left: 50px;
  margin-right: 50px;
  background-color: rgb(78, 76, 76);
}
#background{
  width : 80%;
  height : 80%;
  border: 15px solid rgb(229, 220, 231);
  border-radius : 30px 30px / 30px 30px;
  
}
.box {
  margin : 50px; 
  padding : 20px;
  border : 1px solid rgb(248, 239, 249);
  border-radius : 20px;
  background-color: rgb(255, 255, 255);
}

/* button style*/
.frame {
  width: 90%;
  margin: 40px auto;
  text-align: center;
}
button {
  margin: 20px;
}
.custom-btn {
  width: 130px;
  height: 40px;
  color: #fff;
  border-radius: 5px;
  padding: 10px 25px;
  font-family: 'Lato', sans-serif;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
   box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1);
  outline: none;
}
.btn-12{
  position: relative;
  right: 20px;
  bottom: 20px;
  border:none;
  box-shadow: none;
  width: 130px;
  height: 40px;
  line-height: 42px;
  -webkit-perspective: 230px;
  perspective: 230px;
}
.btn-12 span {
  background: rgb(0,172,238);
background: linear-gradient(0deg, rgba(0,172,238,1) 0%, rgba(2,126,251,1) 100%);
  display: block;
  position: absolute;
  width: 130px;
  height: 40px;
  box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1);
  border-radius: 5px;
  margin:0;
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.btn-12 span:nth-child(1) {
  box-shadow:
   -7px -7px 20px 0px #fff9,
   -4px -4px 5px 0px #fff9,
   7px 7px 20px 0px #0002,
   4px 4px 5px 0px #0001;
  -webkit-transform: rotateX(90deg);
  -moz-transform: rotateX(90deg);
  transform: rotateX(90deg);
  -webkit-transform-origin: 50% 50% -20px;
  -moz-transform-origin: 50% 50% -20px;
  transform-origin: 50% 50% -20px;
}
.btn-12 span:nth-child(2) {
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  transform: rotateX(0deg);
  -webkit-transform-origin: 50% 50% -20px;
  -moz-transform-origin: 50% 50% -20px;
  transform-origin: 50% 50% -20px;
}
.btn-12:hover span:nth-child(1) {
  box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1);
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  transform: rotateX(0deg);
}
.btn-12:hover span:nth-child(2) {
  box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1);
 color: transparent;
  -webkit-transform: rotateX(-90deg);
  -moz-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
}