-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
62 lines (57 loc) · 1.72 KB
/
style.css
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
61
62
.register{
height:30vh;
width:90%;
border: 2px solid black;
margin-left: 10px;
}
img{
margin-left: 120px;
}
.register h1{
margin-left: 15px;
}
input{
margin-left: 15vh;
}
#btn{
margin-top: 5px;
margin-left: 23vh;
}
* {
font-family: 'Open Sans', sans-serif; /* Apply Open Sans font to all text */
}
body {
font-family: 'Open Sans', sans-serif; /* Apply Open Sans font to all text */
}
.register {
/* border: 2px solid #1E90FF; Blue shade border */
padding: 20px; /* Add padding for spacing inside the form */
max-width: 400px; /* Set maximum width for the form */
margin: 0 auto; /* Center the form horizontally */
transition: border-color 0.3s, box-shadow 0.3s; /* Smooth transition for border and box-shadow */
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); /* Shadow effect */
}
.register h1 {
margin-bottom: 20px; /* Add spacing below the heading */
}
.register input[type="text"] {
width: 90%; /* Full width input field */
padding: 10px; /* Add padding for input field */
box-sizing: border-box; /* Include padding in width calculation */
margin-bottom: 10px; /* Add spacing below the input field */
margin-left: -1px;
}
.register button {
background-color: #1E90FF; /* Blue shade background for the button */
color: white; /* White text color for the button */
padding: 10px 20px; /* Add padding for the button */
border: none; /* Remove default button border */
cursor: pointer; /* Change cursor to pointer on hover */
}
.open-sans-text {
font-family: "Open Sans", sans-serif;
font-optical-sizing: auto;
font-weight: 500;
font-style: normal;
font-variation-settings:"wdth" 100;
}