-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
109 lines (91 loc) · 1.78 KB
/
styles.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
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,400;0,600;1,200&display=swap');
* {
margin: 0px;
border: 0px;
}
body {
font-family: 'Montserrat', sans-serif;
background: url(meeting2.png) no-repeat;
background-size: 1300px 1700px;
}
#main {
background-color: #EDEFEF;
text-align: center;
height: 95rem;
margin: 0 20rem 0 20rem;
border-radius: 10px;
}
.header{
background-color: rgb(69, 105, 149);
}
#title {
padding-top: 5rem;
font-weight: 400;
color: rgb(235, 235, 235);
text-shadow: 0.5px 0.5px;
}
#description {
font-size: 0.8rem;
padding-bottom: 1rem;
color:rgb(255, 254, 244);
}
#survey-form {
padding: 1rem 3rem 1rem 2rem;
font-size: 0.8rem;
text-align: left;
line-height: 1.5;
}
.form-group {
margin: 0 auto 1.25rem auto;
padding: 0.5rem;
width: 100%;
}
.form-control {
display: block;
width: 100%;
border-radius: 0.25rem;
border-color: rgb(69, 105, 149);
}
label {
display: flex;
align-items: center;
margin-bottom: 0.5rem;
}
#name-label, #email-label, #age-label, .questions {
font-weight: 800;
color:rgb(50, 78, 113)
}
#name, #email {
display: block;
border-style: solid;
border-width: thin;
height: 1.5rem;
}
.questions {
padding: 0.5rem 0 0.5rem 0;
}
.input-ratio, .input-checkbox {
margin: 0.5rem;
}
.input-text-arena {
width: 100%;
height: 100px;
}
#textarea {
border-style: solid;
border-color:rgb(50, 78, 113);
border-width: 2px;
}
#comments {
font-family: 'Montserrat', sans-serif;
font-size: 0.8rem;
}
#submit {
display: block;
width: 100%;
padding: 1rem;
background: rgb(37, 152, 37);
border-radius: 5px;
cursor: pointer;
color: white;
}