-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
127 lines (104 loc) · 1.86 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
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
html {
scroll-behavior: smooth;
}
body {
margin: 0;
}
.container {
padding: 20px;
margin: 0 auto;
}
.movie {
margin-top: 50px;
}
section {
position: relative;
width: 100%;
margin-top: 25px;
display: flex;
align-items: center;
flex-wrap: nowrap;
overflow-x: auto;
transition: 250ms all;
}
section .imageContainer {
flex: 0 0 auto;
}
.content {
display: none;
position: relative;
min-height: 200px;
width: 100%;
border: 1px solid lightgrey;
padding: 20px;
}
.content-display {
display: block;
}
.content-display {
display: block;
display: flex;
justify-content: space-around;
flex-wrap: wrap;
align-items: center;
}
.content div {
margin: 10px;
}
#content-close {
cursor: pointer;
position: absolute;
top: 20px;
padding: 10px;
/* width: 35px;; */
border: 1px solid lightgrey;
border-radius: 45%;
left: 20px;
}
.imageContainer {
transition: 250ms all;
width: 300px;
}
.imageContainer:hover {
margin-left: 0 40px;
opacity: 0.6;
cursor: pointer;
}
.imageContainer {
border-radius: 4px;
box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.3);
cursor: pointer;
}
.imageContainer img {
width: 100%;
}
.btn {
color: #fff;
background-color: #007bff;
border-color: #007bff;
outline: none;
min-height: 38px;
font-weight: 400;
text-align: center;
cursor: pointer;
padding: .375rem .75rem;
font-size: 1rem;
line-height: 1.5;
border-radius: .25rem;
}
.form-group {
margin-bottom: 1rem;
}
.form-control {
width: 760px;
padding: .375rem .75rem;
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
outline: none;
color: #495057;
background-color: #fff;
background-clip: padding-box;
border: 1px solid #ced4da;
border-radius: .25rem;
}