-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogregStyling.css
64 lines (53 loc) · 882 Bytes
/
logregStyling.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
body{
margin: 0;
}
.centertable{
position: absolute;
text-align: center;
margin-left: 550px;
margin-right: 500px;
margin-top: 25%;
}
input{
border: 2px solid black;
}
label{
font-size: 12pt;
font-weight: bold;
}
container{
display: flex;
}
button{
background-color: white;
border: 2px solid black;
color: black;
font-size: 16px;
cursor: pointer;
transition-duration: 1s;
}
button:hover{
background-color: black;
color: white;
}
.slideshow-container{
position: relative;
z-index: -1;
}
.prev, .next{
cursor:pointer;
position:absolute;
top:45%;
width:auto;
color: white;
padding: 16px;
font-size: 28px;
border-radius: 0 10px 10px 0;
}
.next{
right:0;
border-radius: 10px 0px 0px 10px;
}
.prev:hover,.next:hover{
background-color: rgba(0,0,0,0.8);
}