-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
59 lines (52 loc) · 1008 Bytes
/
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
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
width: 50vw;
height: 50vh;
transform: translate(50%, 50%);
}
form {
background-color: rgb(114, 114, 114);
padding: 20px;
border-radius: 10px;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
input {
display: block;
width: 100% - 20px;
margin-bottom: 15px;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
}
button {
width: 100%;
padding: 5%;
border-radius: 5px;
border: none;
background-color: #007bff;
color: white;
}
.result {
float: right;
}
.formContainer {
display: flex;
flex-direction: row;
justify-content: flex-start;
width: 100%;
}
.reviewForm {
display: flex;
flex-direction: column;
width: 80%;
}
.formText {
color: #fff;
flex: 1 1 calc(50% - 10px);
display: flex;
justify-content: flex-start;
}