-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
123 lines (121 loc) · 2.45 KB
/
index.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
body{
background-color:blueviolet;
color:white;
}
#title{
text-align: center;
margin-top:40px;
font-family: 'Poppins', sans-serif;
font-weight: bolder;
}
#description{
text-align:center;
font-family: 'Poppins', sans-serif;
line-height:25,2px;
font-size:18px;
margin:0px 20px 40px;
}
#survey-form{
background-color:rgba(27, 27, 50, 0.8);
width:700px;
height:auto;
margin:0 auto;
border-radius: 5px;
padding-top:40px;
}
.normal,select{
margin-left:50px;
display:block;
font-family: 'Poppins', sans-serif;
margin-bottom: 5px;
}
[type=text],[type=email],[type=number],select{
width:85%;
height:35px;
border-radius: 6px;
border-color:white;
margin-bottom: 20px;
margin-left:50px;
font-family: 'Poppins', sans-serif;
}
[placeholder]{
font-size:16px;
}
.radio{
margin-left:50px;
font-family: 'Poppins', sans-serif;
padding-bottom: 20px;
font-size:18px;
}
.tagop{
width:85%;
height:70px;
border-radius: 6px;
border-color:white;
margin-bottom: 20px;
margin-left:50px;
font-family: 'Poppins', sans-serif;
}
[type=submit]{
width:80%;
background-color:rgb(55, 175, 101);
color:white;
height:50px;
text-align: center;
font-family: 'Poppins', sans-serif;
border-radius: 5px;
font-weight: bold;
margin-bottom: 20px;
margin-left: 70px;
}
[type=radio],[type=checkbox]{
height:20px ;
width: 20px;
}
textarea{
margin-left: 50px;
font-family: 'Poppins', sans-serif;
border-radius: 5px;
height:120px;
width:600px;
resize:none;
margin-bottom: 40px;
}
input[class=radio]{
vertical-align: bottom;
}
label[class=normal]{
font-size: 18px;
}
select{
width:86%;
height:43px;
border-radius: 6px;
border-color:white;
margin-bottom: 20px;
margin-left:50px;
font-family: 'Poppins', sans-serif;
font-size:16px;
}
@media (max-width:725px){
textarea{
width:80%;
}
.normal,select,[type=text],[type=email],[type=number],select,.radio,.tagop,textarea,select{
margin-left:30px;
}
[type=submit]{
margin-left: 60px;
}
#survey-form{
width:600px;
}
}
@media (max-width:600px){
#survey-form{
width:450px;
}
[type=submit]{
margin-left: 40px;
}
}