emi-indo-cordova-plugin-admob
Version:
Cordova/Quasar/Capacitor Plugin Admob Android IOS
60 lines (53 loc) • 1.07 kB
CSS
body {
font-family: Arial, sans-serif;
margin: 0;
height: 100%;
padding: 20px;
display: flex;
flex-direction: column;
align-items: center;
background-color: #f4f4f4;
}
h1 {
color: #333;
margin-bottom: 20px;
}
.button-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 10px;
width: 100%;
max-width: 600px;
}
button {
padding: 10px 15px;
font-size: 14px;
border: none;
background-color: #007bff;
color: white;
border-radius: 5px;
cursor: pointer;
text-align: center;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #0056b3;
}
textarea {
width: 100%;
max-width: 600px;
margin-top: 20px;
padding: 10px;
font-size: 14px;
border: 1px solid #ccc;
border-radius: 5px;
resize: none;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
height: 150px;
}
label {
font-size: 16px;
font-weight: bold;
margin-top: 20px;
color: #333;
}