-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
61 lines (60 loc) · 1.23 KB
/
style.css
File metadata and controls
61 lines (60 loc) · 1.23 KB
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
#background{
background-image: url(./endbackground.png);
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
}
#circlelogo{
width: 200px;
height: 200px;
border-radius: 50%;
overflow: hidden;
}
#white{
color:#ffffff;
}
#boxtext{
display: flex;
justify-content: center;
color:#ffffff;
text-decoration: none;
}
.container{
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.rectangle{
width: 400px;
height: 300px;
background-color: rgba(0,0,0,0.3);
border: 2px solid #ffffff;
border-radius: 10px;
}
.btn-rounded{
background-color: rgba(255,255,255,0.5);
border: none;
color: white;
padding: 12px 150px;
border-radius: 12px;
cursor: pointer;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px auto;
transition: background-color 0.3s ease;
}
.button1{padding: 12px 145px}
.btn-rounded:hover{
background-color: rgba(255,255,255,0.7);
}
.btn-rounded:active{
transform: scale(0.98);
}
.bottom-left {
position: absolute;
bottom: 0;
left: 0;
}