12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- * {
- box-sizing: border-box;
- }
- *::-webkit-scrollbar {
- width: 0.5rem;
- background-color: #fff;
- }
- *::-webkit-scrollbar-thumb {
- background-color: #eeeeee;
- }
- html {
- font-size: 16px;
- background-color: white;
- height: 100%;
- }
- body {
- margin: 0;
- padding: 0;
- }
- input,
- textarea {
- border: none;
- outline: none;
- font-family: "generic-family";
- }
- input::placeholder,
- textarea::placeholder {
- font-weight: 400;
- color: rgba(34, 34, 34, 0.5);
- font-family: "generic-family";
- }
- img {
- width: 100%;
- object-fit: cover;
- }
- .a-btn {
- width: 9.125rem;
- height: 3.5rem;
- display: block;
- text-decoration: none;
- background: #1d52a2;
- text-align: center;
- line-height: 3.5rem;
- user-select: none;
- font-size: 1rem;
- font-weight: 400;
- color: #ffffff;
- cursor: pointer;
- }
|