Skip to content

Commit

Permalink
Create Style.css
Browse files Browse the repository at this point in the history
  • Loading branch information
AiGptCode authored May 19, 2024
1 parent 072c190 commit c992c05
Showing 1 changed file with 93 additions and 0 deletions.
93 changes: 93 additions & 0 deletions Style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
/* Import Bootstrap CSS CDN */
@import url('https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css');

/* Add custom CSS styles */
body {
font-family: 'Roboto', sans-serif;
}

.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}

button[type="submit"] {
background-color: #4CAF50;
color: white;
padding: 10px 20px;
border: none;
cursor: pointer;
}

button[type="submit"]:hover {
background-color: #3e8e41;
}

/* Hide form inputs for APN, VPN, proxy, and DNS by default */
#apn-inputs,
#vpn-inputs,
#proxy-inputs,
#dns-inputs,
#cloudflare-inputs {
display: none;
}

/* Style for APN select */
.apn select {
width: 100%;
padding: 5px;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 4px;
}

/* Style for form-check labels */
.form-check-label {
font-size: 16px;
font-weight: 400;
}

/* Style for form-text */
.form-text {
font-size: 14px;
font-weight: 300;
color: #737373;
}

/* Style for VPN inputs */
.vpn input[type="text"],
.vpn input[type="password"] {
width: 100%;
padding: 5px;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 4px;
}

/* Style for proxy inputs */
.proxy input[type="text"] {
width: 100%;
padding: 5px;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 4px;
}

/* Style for DNS input */
.dns input[type="text"] {
width: 100%;
padding: 5px;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 4px;
}

/* Style for Cloudflare input */
.cloudflare input[type="text"] {
width: 100%;
padding: 5px;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 4px;
}

0 comments on commit c992c05

Please sign in to comment.