-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
72 lines (58 loc) · 1.05 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
body {
display: grid;
grid-template-columns: 1fr;
min-height: 100vh;
grid-template-rows: 50px minmax(calc(100vh - 80px), auto) 30px;
background-image: url('https://cinesiageek.com.br/wp-content/uploads/2017/06/Harry-Potter-Wallpapers-Archives-Page-2-of-4-Wallpaper.jpg');
background-size: cover;
background-repeat: no-repeat;
color: white;
}
.header h1 {
color: white;
}
.header {
background-color: rgb(50, 167, 145);
display: flex;
justify-content: space-between;
align-items: center;
flex-flow: row nowrap;
padding: 0 15px;
}
header form input {
margin: 0 10px;
}
.trybewarts-login {
display: flex;
}
main , #evaluation-form {
display: flex;
}
main {
flex-flow: row wrap;
justify-content: space-between;
align-items: flex-start;
}
main img {
height: 500px;
}
#info {
display: none;
}
footer {
background-color: rgb(50, 167, 145);
text-align: center;
}
#evaluation-form {
width: 675px;
flex-direction: column;
}
#textarea {
resize: none;
}
main form {
width: 675px;
}
.form-check {
margin: 0 3px;
}