-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsurvey.css
62 lines (62 loc) · 1.33 KB
/
survey.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
52
53
54
55
56
57
58
59
60
61
62
#container{
color: white;
}
#survey-form{
border: rgba(17, 73, 9, 0.877);
border-radius: 10px;
border-style: solid;
border-width: 3px;
margin: auto;
width: 50vw;
padding: 4%;
background-color: rgba(9, 27, 5, 0.808);
}
body{
background: linear-gradient(90deg, rgba(7, 100, 7, 0.918), rgba(5, 71, 5, 0.932));
}
.text-center{
text-align: center;
font-size: 3em;
}
.description{
font-size: 140%;
}
.input-normal, .input-fieldset{
display: block;
margin: 20px;
margin-top: 5px;
margin-left: 0px;
border-radius: 7px;
padding: 10px;
font-size: 18px;
width: 90%;
font-family: sans-serif, serif, Cambria, Cochin, Georgia, Times, 'Times New Roman';
}
.input-normal:focus{
box-shadow: 0 0 3px 2px rgba(17, 160, 17, 0.877);
outline: none;
border-color: green;
}
.label-text{
font-size: 160%;
font-weight: 547;
}
.input-checkbox, .input-radio{
padding: 20px;
margin: 10px;
}
#comment{
height: 120px;
}
.reset-button-style, .submit-button-style{
cursor: pointer;
background-color: rgb(6, 131, 16);
padding: 6px;
font-size: 20px;
color:white;
margin: 15px;
width: 90%;
}
.reset-button-style:hover, .submit-button-style:hover{
background-color: rgb(4, 223, 4);
}