123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- body {
- font-size: medium;
- font-family: Verdana;
- margin: 10px;
- padding: 10px;
- }
- div {
- color: rgb(6, 58, 55);
- width: 100px;
- height: 100px;
- }
- .disabled {
- background-color: rgb(53, 51, 51);
- color: rgb(220, 235, 240)
- }
- .red {
- background-color: red;
- }
- .green {
- background-color: green;
- }
- .yellow {
- background-color: yellow;
- }
- input {
- border: 2px solid rgb(9, 52, 71);
- border-radius: 4px;
- height: 50px;
- width: 300px;
- font-size: medium;
- font-family: Verdana;
- }
- input[type=text]:focus {
- background-color: rgb(220, 235, 240);
- }
- button {
- border-radius: 12px;
- cursor: pointer;
- border-radius: 5px;
- text-align: center;
- background-color: #e7e7e7;
- color: black;
- /* Gray */
- height: 50px;
- width: 100px;
- font-size: 20px;
- font-family: Verdana;
- }
- button:hover {
- box-shadow: 0 12px 16px 0 rgba(124, 108, 108, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
- }
|