forked from gdscrgpv/Converter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
conversion.css
84 lines (72 loc) · 1.27 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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&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;
}
body::before {
content: '';
position: absolute;
width: 100vw;
height: 100vh;
background-image: url(animation.gif);
background-size: contain;
background-blend-mode: darken;
top: 0;
right: 0;
}
.container {
position: relative;
width: 700px;
}
.navbar {
position: fixed;
top: 0;
width: 100%;
}
.form-hold {
background-color: rgba(41, 41, 41, 0.3);
border-radius: 50px;
}
.heading {
color: white;
}
.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: white;
background-color: #1c1c1c;
}
.footer-div a {
color: orange;
text-decoration: none;
}
@media(max-width:800px) {
.container {
width: auto;
height: 100%;
}
}
#center{
text-align: center;
margin-left: 450px;
}