-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpopup.css
More file actions
79 lines (69 loc) · 1.61 KB
/
popup.css
File metadata and controls
79 lines (69 loc) · 1.61 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
:root {
--zinc-900: #080707; /* Define zinc-800 color */
}
body {
background-color: rgb(32, 2, 2);
height: 280px;
width: 280px;
font-family: Arial, sans-serif, roboto;
display: flex;
justify-content: center;
align-items: center;
border: 2px solid rgb(79, 240, 4);
margin: 0px;
padding: 0%;
border-radius: 5px
}
.first {
display: flex;
flex-direction: column;
color: white;
align-items: center;
height: 280px;
width: 280px;
border-radius: 5px;
padding: 20px;
box-sizing: border-box;
}
.first h1 {
font-size: 4rem;
margin-bottom: 1rem;
}
.button {
display: flex;
flex-wrap: wrap;
justify-content: center;
margin-top: 0.5rem;
box-shadow: 0 0 5px cyan,
0 0 25px cyan;
font: 400;
}
.button a {
color: rgb(42, 35, 35);
text-decoration: none;
background-color: #FFFFFF;
background-image: linear-gradient(180deg,#329cc9 55%, #cacadd 100%);
padding: 0.6rem 1rem;
margin: 0.5rem;
border-radius: 0.5rem;
transition: all 0.3s ease-in-out;
z-index: 0;
}
.button a:hover {
/* background-color: #f15608; */
/* background-color: #07ebc980; */
/* transform: scale(1.1) */
box-shadow: 0 0 5px cyan,
0 0 25px cyan, 0 0 50px cyan,
0 0 100px cyan, 0 0 200px cyan
}
.background {
background-image: linear-gradient(rgba(0, 0, 3, 0.7), rgba(237, 191, 191, 0.2)), url(img.jpg);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
/* z-index: -2; */
}
.for_heading{
margin-bottom: 0%;
}