Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- * {
- margin: 0px;
- padding: 0px;
- font-family: "Arial";
- font-size: 17px;
- font-weight: 600px;
- }
- body {
- background: #171616;
- color: #d4d0cf;
- -webkit-user-select: none;
- -moz-user-select: -moz-none;
- -ms-user-select: none;
- user-select: none;
- }
- #container {
- display: flex;
- justify-content: center;
- margin: 30px 0px 0px 0px;
- color: #171616;
- }
- #frame {
- width: 350px;
- height: 700px;
- background: #e0d8d7;
- border-radius: 10px;
- box-shadow: 10px 10px 20px black;
- }
- #screen {
- width: 350px;
- height: 180px;
- background: #ccc3c2;
- display: flex;
- justify-content: center;
- border-top-right-radius: 10px;
- border-top-left-radius: 10px;
- line-height: 180px;
- font-size: 250%;
- color: #d4d0cf;
- }
- img {
- width: 335px;
- height: 160px;
- display: flex;
- justify-content: center;
- align-items: center;
- position: relative;
- top: 10px;
- border-radius: 7px;
- }
- #button-container {
- display: grid;
- grid-template-columns: 114px 114px 114px;
- text-align: center;
- line-height: 120px;
- margin: 0px auto 0px auto;
- }
- .button {
- font-size: 200%;
- margin: 5px;
- transition: 0.5s;
- cursor: default;
- }
- .button:hover {
- background: #595555;
- transition: 0.5s;
- color: white;
- box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.35);
- border-radius: 10px;
- }
- .button:active {
- background: #423e3e;
- transition: 0.5s;
- color: white;
- box-shadow: 20px 20px 15px rgba(0, 0, 0, 0.5);
- border-radius: 10px;
- }
Add Comment
Please, Sign In to add comment