-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsolution.css
More file actions
67 lines (58 loc) · 955 Bytes
/
solution.css
File metadata and controls
67 lines (58 loc) · 955 Bytes
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
html{
padding: 0;
margin: 0;
}
body{
padding: 0;
margin: 0;
}
.image-slider{
box-sizing: border-box;
display: flex;
width: 250px;
height: 300px;
position: relative;
overflow: hidden;
}
.images{
display: flex;
flex-direction: row;
width: 1000px;
position: absolute;
bottom: 50px;
}
.images img{
height: 250px;
}
.circles{
display: flex;
flex-direction: row;
width: 250px;
height: 50px;
position: absolute;
top: 250px;
}
.first{
box-sizing: border-box;
width: 60px;
height: 50px;
display: flex;
border-radius: 50%;
border: 2px solid brown;
}
.second{
box-sizing: border-box;
width: 60px;
height: 50px;
display: flex;
border-radius: 50%;
border: 2px solid grey;
}
.third{
box-sizing: border-box;
width: 60px;
height: 50px;
display: flex;
border-radius: 50%;
border: 2px solid blue;
}