| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- body {
- font-family: "Haas Grot Text R Web", "Helvetica Neue", Helvetica, Arial, sans-serif;
- background: rgb(102, 69, 142);
- color: white;
- }
-
- .container {
- display: flex;
- justify-content: center;
- align-items: center;
- text-align: center;
- min-height: 90vh;
- flex-direction: column;
-
- div {
- margin: 5px;
- width: 1500px;
- display: flex;
- align-items: center;
- width: 40em;
-
- label, button {
- margin-right: 5px;
- margin-left: 5px;
- span {
- margin-left: 5px;
- }
- }
- }
- }
-
-
- /* CSS */
- button {
- background-color: #8b186f;
- border-radius: 8px;
- border-style: none;
- box-sizing: border-box;
- color: #FFFFFF;
- cursor: pointer;
- display: inline-block;
- list-style: none;
- margin: 0;
- outline: none;
- padding: 10px 16px;
- position: relative;
- text-align: center;
- text-decoration: none;
- transition: color 100ms;
- vertical-align: baseline;
- user-select: none;
- -webkit-user-select: none;
- touch-action: manipulation;
- }
|