-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuserstyle.css
More file actions
71 lines (53 loc) · 970 Bytes
/
userstyle.css
File metadata and controls
71 lines (53 loc) · 970 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
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
70
71
body{
margin:0;
padding:0px;
font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;
background:rgb(1, 1, 54);
}
.details{
width:300px;
height:350px;
padding:40px;
position: absolute;
top:20%;
left:38%;
transform:translate(0%,20%);
background:black;
text-align:center;
border-radius:15px;
}
img{
position:absolute;
top:0;
left:40%;
display:block;
margin:0 auto;
width:300px;
}
li{
list-style: none;
color:white;
padding:10px;
text-align:left;
}
.button{
width:max-content;
height:10px;
}
.button p{
margin-left:30px;
padding:20px;
color:black;
font-weight:bold;
background-color:rgb(18, 245, 18);
border-radius: 30px;
display:block;
}
a{
text-decoration:none;
color:inherit;
}
.details h1{
color:rgb(228, 15, 51);
padding:10px;
}