-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
44 lines (39 loc) · 852 Bytes
/
index.css
File metadata and controls
44 lines (39 loc) · 852 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
@import url('https://fonts.googleapis.com/css2?family=Pangolin&display=swap');
.buttons {
display: flex;
justify-content: center;
}
.login {
margin-right: 100px;
margin-top: 180px;
padding: 5px 35px 5px 35px;
border-radius: 4px;
cursor: pointer;
background-color: #57af4c;
font-family: 'Pangolin', cursive;
}
.registration {
margin-left: 100px;
margin-top: 180px;
padding: 5px 20px 5px 20px;
border-radius: 4px;
cursor: pointer;
background-color: #57af4c;
font-family: 'Pangolin', cursive;
}
.container {
height: 100%;
font-family: 'Pangolin', cursive;
}
.container::after {
content: "";
background-image: url(index.jpg);
opacity: 0.8;
background-size: cover;
top: 0;
left: 0;
bottom: 0;
right: 0;
position: absolute;
z-index: -1;
}