-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
93 lines (91 loc) · 1.81 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
.container{
width: 100%;
height: 100vh;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
background-image: url(first.jpg);
}
.box{
width: 80%;
margin: auto;
text-align: center;
padding-top: 100px;
}
.box h1{
color: white;
font-size: 50px;
}
.row{
display: flex;
justify-content: space-between;
margin-top: 5%;
height: 40px;
}
.box-col{
flex-basis: 31%;
height: 300px;
background: transparent ;
border: 1px dashed white;
border-radius: 25px;
margin-bottom: 5%;
padding: 30px 12px;
box-sizing: border-box;
}
@media(max-width:700px){
.row{
flex-direction: column;
}
.container{
width: 100%;
height: 900px;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
background-image: url(first.jpg);}
.btn a button{
text-decoration: none;
width: 100px;
height: 25px;
margin-top: 20px;
border-radius: 25px;
border-color: black;
font-family: 'Times New Roman', Times, serif;
}
.box-col{
flex-basis: 31%;
height: 325px;
background: transparent ;
/* border: 1px dashed white; */
border-radius: 25px;
margin-bottom: 5%;
padding: 30px 12px;
box-sizing: border-box;
}
}
.col-25 label{
color: white;
font-size: 20px;
}
.col-75 input{
height: 20px;
width: 150px;
border-radius: 10px;
border-color: black;
}
.col-75 ::placeholder{
color: black;
}
.btn a button{
text-decoration: none;
width: 100px;
height: 25px;
border-radius: 25px;
border-color: black;
font-family: 'Times New Roman', Times, serif;
}