You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
BinaryBrains/style.css

96 lines
1.9 KiB

/* body{
background-image: url(water.jpg);
background-repeat: no-repeat;
background-position: center;
background-attachment: fixed;
background-size:cover;
} */
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background-color: #6487aa;
color: #ededed;
}
.together{
display: flex;
align-items: center;
justify-content: center;
}
.container {
max-width: 800px;
margin: 20px auto;
margin-top: 50 px;
/* background: #fff; */
padding: 20px;
border: 1px solid black;
background-color: rgba(47, 65, 72, 0.23);
box-shadow: inset -5px -5px rgba(0, 0, 0, 0.5);
border-radius: 25px;
}
h1 {
text-align: center;
color: #000202;
}
.form-group {
margin-bottom: 15px;
}
label {
display: block;
margin-bottom: 5px;
font-weight: bold;
}
input[type="text"], input[type="email"], textarea {
width: 65%;
padding: 8px;
/* margin: 20px ; */
border: none;
outline: none;
border-radius: 20px;
background-color: rgba(0, 0, 0, 0.5);
box-shadow: inset -3px -3px rgba(0, 0, 0, 0.5);
color: white;
font-size:1rem;
}
input[type="radio"] {
margin-right: 10px;
}
textarea {
resize: vertical;
height: 80px;
}
button {
align-items:center;
display: block;
width: 50%;
padding: 10px 20px;
margin: 0 auto;
background-color: rgba(0, 0, 0, 0.5);
box-shadow= inset -3px -3px rgba(0, 0, 0, 0.5);
color: #fff;
border: none;
outline: none;
border-radius: 20px;
font-size:1rem;
cursor: pointer;
font-size: 16px;
}
button:hover {
background-color: #005bb5;
}
#tips {
margin-top: 20px;
padding: 15px;
background-color: #898f90;
border-left: 4px solid #0066cc;
display: none;
}
.top-left-image {
position: static;
top: 0;
left: 0;
width: 150px;
height: auto;
}