-
Notifications
You must be signed in to change notification settings - Fork 1
/
style2.css
69 lines (62 loc) · 1.3 KB
/
style2.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
69
body{
margin: 0;
padding: 0;
font-family: Century Gothic;
background-image: url('bg.gif');
background-position: center;
background-size: cover;
}
.container{
height: 75vh;
width:30%;
background:rgba(0,0,0,0.6);
position: absolute;
top: 50%;
left:50%;
transform: translate(-50%,-50%);
padding: 0 20px;
}
.container .img{
width:70px;
height:70px;
background:url('abl.jpg')no-repeat;
border-radius: 50px;
top: 0%;
left:50%;
background-position: center;
background-size: cover;
position: absolute;
transform: translate(-50%,-50%);
}
.container h1{
color:white;
margin-top:40px;
text-align: center;
margin-top: 50px;
}
.container p{
color:white;
font-style: italic;
font-size:22px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
text-align: center;
margin-top: auto;
}
.btn{
background-color: aqua;
color:rgba(3, 3, 83, 0.89);
border-radius: 19px;
width:150px;
position: relative;
margin-left: 33%;
height: 40px;
font-size: 20px;
font-weight: bolder;
margin-top:auto;
box-shadow: rgb(117, 245, 245);
}
.btn:hover{
background-color: rgba(3, 3, 83, 0.89);
color:aqua;
box-shadow: rgb(117, 245, 245);
}