-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
130 lines (112 loc) · 2.15 KB
/
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
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
124
125
126
127
128
129
130
.header{
background-color: rgb(0, 225, 255);
padding: 20px;
display: flex;
align-items: center;
justify-content: space-between;
border: 2px solid black;
}
#logo1{
width: 300px;
margin-right: 20px;
border: 2px solid black;
}
#logo2{
width: 300px;
height: 168.13px;
}
#text1{
margin: 0;
text-align: center;
font-size: 50px;
}
.survey_front{
display: flex;
text-align: left;
justify-content: center;
padding: 50px;
background-color: rgb(159, 43, 201);
font-size: 25px;
margin-left: 150px;
margin-right: 150px;
border: 2px solid black;
}
.form-grp{
padding: 20px;
}
.form-grp2{
background-color: white;
border: 3px solid black;
border-radius: 10px;
padding: 10px;
}
.form-grp3{
background-color: white;
border: 3px solid black;
border-radius: 10px;
padding: 10px;
text-align: center;
}
#name, #email{
width: 250px;
height: 25px;
font-size: 20px;
}
.q1{
text-align: left;
margin-left: 20px;
}
#favorite_language{
float: left;
margin-left: 20px;
width: 300px; /* Set the width of the text input box */
height: 20px; /* Set the height of the text input box */
padding: 8px; /* Adjust padding as needed */
font-size: 20px; /* Adjust font size as needed */
border: 1px solid; /* Add border */
border-radius: 4px;
}
#project_experience{
width: 150px;
height: 30px;
font-size: 16px;
}
#learning_platform{
width: 150px;
height: 30px;
font-size: 16px;
}
.footer{
background-color: rgb(75, 81, 245);
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-evenly;
border: 2px solid black;
}
#foot1{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.logo2{
font-size: 25px;
color: white;
}
.logo3{
width: 175px;
height: 40px;
font-size: 20px;
cursor: pointer;
border-radius: 8px;
transition-duration: 0.4s;
}
.button1:hover{
background-color: rgb(255, 255, 0);
color: black;
}
.button2:hover{
background-color: #04AA6D;
color: white;
}