-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevade.css
More file actions
88 lines (81 loc) · 1.63 KB
/
evade.css
File metadata and controls
88 lines (81 loc) · 1.63 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
80
81
82
83
84
85
86
87
88
body{
color: white;
font-family: Montserrat;
background: black;
margin: 0;
}
#main{
margin-right: 100%;
margin-left: 0;
left: 0;
}
#evade-info{
color:black;
}
h1{
font-size: 30px;
text-align: right;
margin-right: 10px;
margin-top: 60px;
}
/*div{
text-align: right;
margin-right: 20px;
margin-top:40px;
}*/
/* drpdown Button */
.drpbtn {
font-family: montserrat;
background-color: #ffffff;
color: black;
padding: 30px;
padding-left: auto;
padding-right: auto;
font-size: 20px;
border: none;
cursor: pointer;
width: 400px;
font-weight: 600;
margin: -50px;
border-radius: 50px;
margin-top: 20px;
}
/* drpdown button on hover & focus */
.drpbtn:hover, .drpbtn:focus {
background: linear-gradient(90deg, #00ffa8, #2300ff);
color:white;
}
/* The container <div> - needed to position the drpdown content */
.drpdown {
text-align:center;
display: inline-block;
}
/* drpdown Content (Hidden by Default) */
.drpdown-content {
display: none;
position: absolute;
text-align:left;
background-color: black;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
width: 40%;
margin-top: 30px;
}
/* Links inside the drpdown */
.drpdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
text-align:center;
background:white;
margin: 0;
}
/* Change color of drpdown links on hover */
.drpdown-content a:hover {background-color: #ddd;}
/* Show the drpdown menu (use JS to add this class to the .drpdown-content container when the user clicks on the drpdown button) */
.show {display:block;}
.center{
text-align: center;
margin-bottom: 100px;
}