-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
107 lines (89 loc) · 1.61 KB
/
main.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
body{
margin: 0;
padding: 0;
font-family: "Times New Roman";
}
.btn {
font-weight: 700;
height: 36px;
-moz-user-select: none;
-webkit-user-select: none;
user-select: none;
cursor: default;
border-radius:0;
background:#43A6EB;
height: 55px;
margin-bottom:10px;
font-size: 16px;
color: white;
border:1px solid #43A6EB;
padding:10px 143px;
align-self: center;
}
.btn-signin:hover,
.btn-signin:active,
.btn-signin:focus {
background-color: #2E86C1;
}
.container{
width:80%;
margin:0 auto;
}
.card-container.card {
max-width: 350px;
}
/*
* Card component
*/
.card {
background-color: #FFFFFF;
/* just in case there no content*/
padding: 1px 25px 30px;
margin: 0 auto 25px;
margin-top: 15%x;
}
.welcome{
font-family: "myriad-pro",sans-serif;
font-style: normal;
font-weight: 400;
color:#ffffff;
margin-bottom:25px;
margin-top:50px;
}
.textCenter {
text-align: center;
}
.login_box{
background:#f7f7f7;
border:3px solid #F4F4F4;
padding-left: 15px;
margin-bottom:25px;
}
.input_title{
color:rgba(164, 164, 164, 0.9);
padding-left:3px;
margin-bottom: 2px;
}
#inputEmail,#inputamount,#inputName,#inputMobile,#inputptype {
direction: ltr;
height: 30px;
font-size: 16px;
}
.form-signin input[type=email],
.form-signin input[type=password],
.form-signin input[type=text],
.form-signin input[type=tel],
.form-signin input[type=date],
.form-signin button {
width: 100%;
display: block;
z-index: 1;
position: relative;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.form-signin .form-control:focus {
border-color: rgb(104, 145, 162);
outline: 0;
}