-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
51 lines (48 loc) · 855 Bytes
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
body{
background-color: #05c46b;
}
h1{
text-align: center;
}
form{
background-color: aliceblue;
max-width: 750px;
margin: 50px auto;
padding: 30px 20px;
}
input,select{
width: 100%;
height: 30px;
border: solid whitesmoke;
}
select:hover{
cursor:pointer;
}
.radio,#check{
width: 3%;
height: 14px;
}
textarea{
width: 100%;
height: 115px;
border: 5px solid black;
border-radius: 10px;
}
button{
/* width: 100%;
height: 35px;
background-color: green;
color: white; */
background-color: #05c46b;
border: 1px solid #777;
border-radius: 2px;
font-family: inherit;
font-size: 21px;
display: block;
width: 100%;
margin-top: 50px;
margin-bottom: 20px;
}
button:hover{
cursor: pointer;
}