Untitled

mail@pastecode.io avatar
unknown
plain_text
15 days ago
1.3 kB
1
Indexable
Never
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  font-family: 'Arial', sans-serif;
  color: white;
}

.iphone-lock-screen {
  width: 375px;
  height: 667px;
  background: url('your-image.jpg') center/cover no-repeat; /* Add a wallpaper */
  border-radius: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  position: relative;
}

.status-bar {
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  font-size: 14px;
  position: absolute;
  top: 0;
  width: 100%;
  color: #e0e0e0;
}

.status-icons span {
  margin-left: 10px;
}

.lock-screen-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-top: 150px;
  text-align: center;
}

.time-large {
  font-size: 80px;
  margin-bottom: 20px;
}

.date {
  font-size: 20px;
  margin-bottom: 80px;
}

.unlock-text {
  font-size: 18px;
  position: absolute;
  bottom: 120px;
  opacity: 0.8;
}

.home-button {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: inset 0 5px 10px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
Leave a Comment