-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstudent.css
57 lines (57 loc) · 967 Bytes
/
student.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
* {
padding: 0;
margin: 0;
}
h2 {
text-align: center;
font-size: 30px;
/* margin-top: 10px; */
}
.image {
background-image: url(../images/buses-2.jpg);
width: 100%;
background-size: cover;
background-repeat: no-repeat;
}
.container {
width: 1070px;
height: 657px;
}
button {
background-color: green;
width: 40%;
padding: 10px 25px;
height: 35px;
margin-top: 5px;
display: inline-block;
border-radius: 10px;
margin-left: 30%;
margin-bottom: 10px;
outline: none;
border: 1px solid green;
font-weight: bold;
}
span{
color : red;
}
/* .form-group {
width: 60%;
margin-left: 40%;
}
.form1 {
margin-left: 10%;
}
.form2 {
margin-left: 62%;
}
.form3 {
margin-left: 30%;
}
.form4 {
margin-left: -6.5%;
} */
@media only screen and (max-width: 575px){
.image {
max-width: 100%;
}
}