-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
153 lines (130 loc) · 2.79 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
/***************************************************************************
BDHO Converter
Number system converter
design by Amit barman on 14/06/2022
follow me on github - https://github.com/AmitBarman99/
/*************************************************************************** */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap");
*, *:after, *:before {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
body {
font-family: "DM Sans", sans-serif;
line-height: 1.5;
background-color: #f1f3fb;
background-color: #999999;
padding: 0 2rem;
}
input {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
border-radius: 0;
}
.card {
margin: 2rem auto;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
width: 100%;
max-width: 425px;
background-color: #FFF;
border-radius: 10px;
-webkit-box-shadow: 0 10px 20px 0 rgba(153, 153, 153, 0.25);
box-shadow: 0 10px 20px 0 rgba(153, 153, 153, 0.25);
padding: .75rem;
}
.card-image {
border-radius: 8px;
overflow: hidden;
padding-bottom: 65%;
background-image: url("https://digitalsynopsis.com/wp-content/uploads/2017/07/beautiful-color-ui-gradients-backgrounds-purple-white.png");
background-repeat: no-repeat;
background-size: 150%;
background-position: 0 5%;
position: relative;
}
.gif{
width: 46%;
margin: auto;
margin-right: -40px;
}
.gif img {
max-width: 100%;
display: block;
}
.card-heading {
position: absolute;
left: 10%;
top: 6%;
right: 10%;
font-size: 1.75rem;
font-weight: 700;
color: #735400;
line-height: 1.222;
}
.card-heading small {
display: block;
font-size: .75em;
font-weight: 400;
margin-top: .25em;
}
.card-form {
padding: 2rem 1rem 0;
}
.iType,.oType{
background-color:rgb(92 133 56);
width: 100%;
font-size: 20px;
text-align: center;
border: none;
border-radius: 6px;
padding: 10px 1px;
}
.card-form select,.card-form input{
outline: none;
}
.iType:hover,.oType:hover{
background-color: rgb(233, 122, 215);
}
.iNum,.oNum{
margin-top: 22px;
width: 100%;
border-radius: 4px;
padding: 7px;
}
.action {
margin-top: 2rem;
margin-bottom: 2rem;
}
.action-button {
font: inherit;
font-size: 1.25rem;
padding: 0.6em;
width: 100%;
font-weight: 500;
background-color: #6658d3;
border-radius: 6px;
color: #FFF;
border: 0;
cursor: pointer;
}
.action-button:focus {
outline: 0;
}
.card-info {
padding: 1rem 1rem 0rem 1rem;
text-align: center;
font-size: .875rem;
color: #8597a3;
}
.card-info a {
display: block;
color: #6658d3;
text-decoration: none;
}