Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
RishiRecon
GitHub Repository: RishiRecon/exploits
Path: blob/main/css/style.css
27877 views
1
body {
2
font-family: Arial, sans-serif;
3
margin: 0;
4
padding: 0;
5
}
6
7
header {
8
background-color: #0e70b0;
9
color: white;
10
padding: 20px;
11
text-align: center;
12
}
13
14
header h1 {
15
margin: 0;
16
font-size: 2em;
17
}
18
19
title {
20
padding-top: 20%;
21
}
22
23
body {
24
background-color: #5e7594;
25
color: #c9c9c9;
26
font-family: Arial, Helvetica, sans-serif;
27
}
28
29
30
main {
31
padding: 20px;
32
overflow-wrap: break-word
33
}
34
35
section {
36
margin-bottom: 20px;
37
}
38
39
section h2 {
40
margin-top: 0;
41
}
42
43
@media only screen and (max-width: 600px) {
44
nav {
45
flex-direction: column;
46
text-align: center;
47
48
}
49
50
nav ul {
51
flex-direction: column;
52
padding-top: 0.5rem;
53
}
54
55
nav li {
56
padding: 0.5rem 0;
57
}
58
}
59
60
#gs {
61
cursor: pointer;
62
background-color: #413d3d;
63
border: none;
64
color: rgb(248, 244, 244);
65
padding: 10px 30px;
66
text-align: center;
67
text-decoration: none;
68
display: inline-block;
69
font-size: 16px;
70
border-radius: 5px;
71
72
}
73
74
.button {
75
text-align: center;
76
text-decoration: none;
77
display: inline-block;
78
font-size: 16px;
79
margin: 4px 2px;
80
cursor: pointer;
81
border-radius: 12px;
82
transition: 1s;
83
84
}
85
86
.horizontal-items {
87
display: flex;
88
justify-content: left;
89
}
90
91
.request {
92
text-align: center;
93
text-decoration: none;
94
display: inline-block;
95
font-size: 16px;
96
margin: 4px 2px;
97
cursor: pointer;
98
border-radius: 12px;
99
transition: 1s;
100
}
101
102
footer {
103
background-color: #333;
104
color: white;
105
padding: 20px;
106
text-align: center;
107
}
108