-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpagenation.css
68 lines (61 loc) · 1.41 KB
/
pagenation.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
*{
margin: 0px;
padding: 0px;
box-sizing: border-box;
scroll-behavior: smooth;
}
body{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background: radial-gradient(circle, rgba(25,204,133,1) 17%, rgba(63,251,156,1) 50%, rgba(66,171,216,1) 97%);
font-family: sans-serif;
}
.container{
width: 100%;
height: 600px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
position: relative;
}
.row{
width: 100%;
display: flex;
justify-content: center;
align-items: center;
margin: 30px;
/* border: 1px black solid; */
/* margin-left: 160px; */
font-size: 22px;
text-align: left;
}
.buttons{
width: 200px;
display: flex;
justify-content: space-between;
align-items: center;
position: absolute;
bottom: 5px;
/* margin-top: 60px; */
}
.btn{
cursor: pointer;
display: inline;
background-color: rgba(0, 0, 0, 0.562);
height: 30px;
width: 70px;
padding: 5px;
border-radius: 10px;
text-align: center;
transition: all ease-in 100ms;
}
.btn::selection{
color: none;
background: none;
}
.btn:hover{
background-color: rgba(0, 0, 0, 0.822);
}