-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
91 lines (72 loc) · 1.44 KB
/
style.css
File metadata and controls
91 lines (72 loc) · 1.44 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
/* Styles go here */
body {
font-family: "Apercu Mono Regular", 'Andale Mono', monospace;
font-size: 20px;
position: relative;
color: black;
background-color: white;
height: 100%;
-webkit-font-smoothing: antialiased;
}
header {
border-bottom: 2px solid #E6B91E;
padding: 30px 0px 30px 0px;
}
.my-flex-container{
display: flex;
flex-direction: column;
justify-content: center;
align-items: baseline;
padding: 30px 0px 30px 15px;
}
.my-flex-container-main-content{
height: 100%;
}
img.main.main-img {
// margin: 150px 0px 30px 300px;
border: 10px solid #E6B91E;
}
.my-flex-block-form{
padding: 15px 0px 0px 0px;
}
.main-search{
border: none;
border-bottom: 2px solid #E6B91E;
width: 500px;
height: 50px;
font-size: 20px;
margin-bottom: 20px;
padding: 5px 35px 5px 35px
}
button.btn.btn-block.btn-primary {
width: 250px;
background-color: rgb(230, 185, 30);
font-size: 20px;
}
button.btn.btn-block.btn-primary:hover {
background-color: white;
color: #E6B91E;
}
.filmContent-error{
padding: 10px 30px 10px 30px;
margin-top: 30px;
border: 1px solid red;
border-radius: 5px 5px;
width: 290px;
background-color: #D8000C;
background-repeat: no-repeat;
color: white;
}
.filmContent-error:hover{
cursor: pointer;
}
.my-flex-block-form {
margin: 0px 50px 0px 0px;
}
div#innerFilm {
background-repeat: no-repeat;
}
footer{
background-color: #E6B91E;
height: 50px;
}