12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- .title {
- font-size: 30px;
- background: #F5F5F5;
- height: 200px;
- display: flex;
- align-items: center;
- padding: 0px 25px;
- }
- .container {
- font-size: 40px;
- padding: 10px 50px;
- }
- .add_photo {
- height: 400px;
- display: flex;
- justify-content: center;
- align-items: center;
- margin: 10px;
- border-style: solid;
- border-width: 3px;
- }
- input {
- padding-bottom: 10px;
- font-size: 40px;
- height: 80px;
- width: 100%;
- border-style: none none solid none;
- border-width: 0.5px;
- }
- input :focus {
- outline:none;
- border: 1px none none solid none #1E90FF;
- }
- [type='radio'] {
- width: 30px;
- height: 30px;
- margin-right: 10px;
- }
- [type='checkbox'] {
- width: 30px;
- height: 30px;
- margin-right: 10px;
- display: none;
- }
- button {
- width: 250px;
- height: 100px;
- font-size: 40px;
- margin-top: 80px;
- background: #1E90FF;
- color: white;
- border-radius: 25px;
- float:right;
- }
- select {
- font-size: 40px;
- height: 80px;
- width: 100%;
- }
|