-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
118 lines (99 loc) · 2.13 KB
/
Copy pathstyle.css
File metadata and controls
118 lines (99 loc) · 2.13 KB
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
body {
background-image: linear-gradient(rgba(85, 62, 19, 0.74), rgba(58, 48, 16, 0.74)), url(imgs/survey-background.jpg);
/* or, to get transparant layer, can use box-shaw command*/
background-repeat: no-repeat;
background-size: cover;
background-size: 100% 100%;
background-attachment: fixed;
}
#title {
text-align: center;
padding-top: 50px;
color: white;
font-family: sans-serif;
}
#description {
text-align: center;
padding-bottom: 30px;
color: white;
font-family: sans-serif;
}
#form-container {
align-items: center;
/* How do I align all items in the centre*/
background-color: rgba(65, 61, 57, 0.76);
opacity: 1;
border-radius: 2%;
padding-left: 30px;
padding-top: 30px;
padding-bottom: 50px;
padding-right: 10px;
margin: auto;
width: 50%;
color: white;
font-family: 'Lato', sans-serif;
font-size: 18px;
display: flex;
}
input[type=text] {
width: 80%;
height: 25px;
border-radius: 3px;
border: 2px solid #aaaaaa;
margin: 8px 0;
outline: none;
}
input[type=number] {
width: 80%;
height: 25px;
border-radius: 3px;
border: 2px solid #aaaaaa;
margin: 8px 0;
outline: none;
}
input[type=email] {
width: 80%;
height: 25px;
border-radius: 3px;
border: 2px solid #aaaaaa;
margin: 8px 0;
outline: none;
}
select {
width: calc(80% + 2px);
padding: 1px 2px;
height: 25px;
border-radius: 3px;
border: 2px solid #aaaaaa;
margin: 8px 0;
font-family: 'Lato', sans-serif;
color: #868585;
margin: 8px 0px;
}
input[type=checkbox] {
line-height: 3px;
margin: 8px, 0px;
}
select, input {
box-sizing: content-box;
}
textarea {
width: 80%;
font-family: 'Lato', sans-serif;
height: 70px;
color: #868585;
}
input[type=submit] {
width: 80%; /*not aligned*/
height: 35px;
background-color: rgb(21, 156, 51);
color: white;
font-family: 'Lato', sans-serif;
border-radius: 3px;
border: 2px solid #aaaaaa;
font-size: 18px;
}
#button {
padding-top: 20px;
padding-bottom: 30px;
}