-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprojectAddition.css
More file actions
150 lines (117 loc) · 2.62 KB
/
Copy pathprojectAddition.css
File metadata and controls
150 lines (117 loc) · 2.62 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
main {
display: flex;
flex-direction: column;
align-items: center;
}
#grid-home2{
padding:4rem;
padding-top: 15rem;
background-image: url("images/spacejoy-YnLJ3rM4VtI-unsplash.jpg");
background-repeat: no-repeat;
background-size: cover;
width: 100%;
}
.info {
display: flex;
flex-direction: column;
background-color: #f1efed;
font-size: 16px;
color: #333;
width: 60%;
padding-left: 20px;
padding-right: 20px;
padding-bottom: 20px;
border: 1px solid #ccc;
border-radius: 10px;
box-shadow: 0px 0px 10px #888888;;
}
.info h1 {
font-size: 2.2rem;
background-color: #4B4D43;
color:#f2f2f2;
display: flex;
justify-content: center;
align-items: center;
padding: 1.7rem;
border-radius: 10px;
}
.info p, .info form{
margin: 5px 0;
font-size: 1.3em;
line-height: 1.5;
}
#submitButten1{
margin-right: 1rem;
background-color: #4b4d43;
color:#f1efed;
padding: 0.4rem;
border-radius: 0.3rem;
font-size: 1.37rem;
text-decoration: none;
}
#mainCONbody{
display: flex;
justify-content: space-around;
flex-shrink: 1;
}
form .item input{
border-radius: 4px;
border: 1px solid rgba(212, 207, 201, 0.639);
outline: 0;
padding: 0.5em 1em;
width: 30%;
height: 2em;
font-size: 17px;
transition: background-color 0.2s;
background-color: rgba(214, 210, 206, 0.333);
font-family: 'Amiri';
}
form .item input:hover{
background: rgba(185, 180, 175, 0.349);
}
form .item input:focus {
box-shadow: 1px 1px 5px 1px rgb(219, 219, 206);
}
select {
/* Reset */
appearance: none;
border: 0;
outline: 0;
font: inherit;
/* Personalize */
width: 20rem;
padding: 1rem 4rem 1rem 1rem;
background-color: rgba(185, 180, 175, 0.333);
color: #333;
border-radius: 0.25em;
box-shadow: 0 0 1em 0 rgba(0, 0, 0, 0.2);
cursor: pointer;
/* Remove IE arrow */
}
select::-ms-expand {
display: none;
/* Remove focus outline */
}
select:focus {
outline: none;
/* <option> colors */
}
select option {
color: inherit;
background-color: var(--option-bg);
}
textarea{
border-radius: 4px;
border: 1px solid rgba(212, 207, 201, 0.639);
outline: 0;
font-size: 17px;
transition: background-color 0.2s;
background-color: rgba(214, 210, 206, 0.333);
font-family: 'Amiri';
}
textarea:hover{
background: rgba(185, 180, 175, 0.349);
}
textarea:focus {
box-shadow: 1px 1px 5px 1px rgb(219, 219, 206);
}