forked from Cesar-Hack-Gray/SocialSploit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathestilo.css
More file actions
60 lines (53 loc) · 1.02 KB
/
Copy pathestilo.css
File metadata and controls
60 lines (53 loc) · 1.02 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
body {
font-family: Arial, sans-serif;
background-color: #f0f4f8;
color: #333;
margin: 0;
padding: 0;
}
.container {
max-width: 600px;
margin: 50px auto;
background-color: #fff;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
padding: 20px;
}
h1 {
font-size: 28px;
color: #333;
text-align: center;
margin-bottom: 10px;
}
h2 {
font-size: 24px;
color: #ffffff;
background: linear-gradient(to bottom, #B9F2FF, #C5CAE9);
padding: 15px;
border-radius: 20px;
text-align: center;
margin-bottom: 30px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
label {
font-weight: bold;
color: #555;
display: block;
margin-bottom: 5px;
}
.form-select {
width: 100%;
padding: 10px;
font-size: 16px;
border: none;
border-radius: 5px;
background-color: #fafafa;
transition: background-color 0.3s ease;
}
.form-select:focus {
outline: none;
background-color: #e6f0ff;
}
.mb-3 {
margin-bottom: 20px;
}