-
Notifications
You must be signed in to change notification settings - Fork 8
/
conversion.css
97 lines (82 loc) · 1.82 KB
/
conversion.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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Faster+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sarpanch:wght@800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Coda:wght@800&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
/* background-image: url(bg2.png); */
background-color: #111;
background-size: cover;
}
.container {
position: relative;
width: 700px;
}
.btn-outline-dark {
background-color: #FF9700 !important;
border-color: #FF9700 !important;
}
.form-hold {
background-color: rgba(41, 41, 41, 0.6);
border-radius: 50px;
padding-left: 10px;
padding-right: 10px;
font-weight: 600;
width: max-content;
}
.contact a {
color: #fff !important;
}
.form-hold {
background-color: rgba(150, 150, 150, 0.192);
border-radius: 150px 2px 2px 2px;
}
.heading {
letter-spacing: 1px;
word-spacing: 2.5px;
font-family: 'Coda', cursive;
padding-bottom: 37px;
color: #FF9700;
}
.form-hold input[type=text] {
background: transparent;
outline: none;
}
input {
background-color: #fff !important;
}
.text {
text-align: left;
color: #fff;
}
.footer-div {
position: fixed;
bottom: 0;
width: 100%;
color: #fff;
background-color: rgb(5, 5, 5);
}
.nav-link:active,
.nav-link:hover,
.nav-link:focus {
color: #fff !important;
}
.footer-div a {
color: rgb(255, 166, 0);
text-decoration: none;
}
@media(max-width:800px) {
.container {
width: auto;
height: 100%;
}
}