Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
beefproject
GitHub Repository: beefproject/beef
Path: blob/master/extensions/demos/html/butcher/butch.css
1154 views
1
/*
2
* Copyright (c) 2006-2025 Wade Alcorn - [email protected]
3
* Browser Exploitation Framework (BeEF) - https://beefproject.com
4
* See the file 'doc/COPYING' for copying permission
5
*/
6
7
html {
8
height: 100%;
9
}
10
body {
11
background: #fff;
12
padding: 0;
13
margin: 0;
14
height: 100%;
15
}
16
#content {
17
position: relative;
18
width: 800px;
19
height: 100%;
20
margin-left: auto;
21
margin-right: auto;
22
/*border: solid 1px black;*/
23
background-image: url("right.jpg");
24
background-repeat: no-repeat;
25
background-position: right top;
26
}
27
28
#logo {
29
position: absolute;
30
top: 0;
31
left: 0;
32
width: 368px;
33
}
34
#stuff {
35
position: relative;
36
/*border: solid 1px red;*/
37
top: 200px;
38
width: 420px;
39
}
40
.bigger {
41
font-family: "Lucida Sans", arial;
42
font-size: 18px;
43
}
44
.normal {
45
padding-top: 20px;
46
font-family: "Lucida Sans", arial;
47
font-size: 14px;
48
}
49
.smaller {
50
padding-top: 20px;
51
font-family: "Lucida Sans", arial;
52
font-size: 8px;
53
}
54
#friends {
55
display: none;
56
padding-top: 20px;
57
}
58
#hamper {
59
display: none;
60
padding-top: 20px;
61
}
62
a:link {color:#000;} /* unvisited link */
63
a:visited {color:#000} /* visited link */
64
a:hover {color:#000;} /* mouse over link */
65
a:active {color:#000;} /* selected link */
66
67