-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
79 lines (78 loc) · 1.39 KB
/
style.css
File metadata and controls
79 lines (78 loc) · 1.39 KB
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
*{
margin: 0px;
padding: 0px;
/* font-family: 'Poppins' ,san/-serif; */
font-family: "Poppins", sans-serif;
font-style: normal;
box-sizing: border-box;
}
body{
background-color: #002339 !important;
color: #fff;
}
.container-fluid{
margin: 12%;
}
.container{
}
.container h1{
font-weight: 500;
font-size: 45px;
color: white;
margin-bottom: 50px;
}
.container h1 span{
color: #019f55;
}
.container input{
border: none;
outline: none;
margin-right: 20px;
height: 60px;
font-size: 22px;
border-radius: 5px;
border: 1px solid;
}
.container input:focus{
border: 3px solid #019f55;
}
.container button{
background-color:#019f55 ;
border: none;
outline: none;
color: #fff;
font-size: 22px;
font-weight: 300;
display: flex;
justify-content: center;
align-items: center;
padding: 16px 26px ;
border-radius: 5px;
cursor: pointer;
margin-top: 30px;
}
.container button:hover{
background-color: transparent;
border: 3px solid #019f55;
transition: 1s ease;
}
.container button img{
margin-right: 10px;
width: 28px;
}
@media (max-width:600px) {
.container button{
font-size: 16px;
}
.container button img{
width: 20px;
}
}
@media (max-width:300px){
.container .heading{
font-size: 25px;
}
.container .head{
font-size: 22px;
}
}