-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
76 lines (68 loc) · 1.74 KB
/
styles.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
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300&family=Encode+Sans&family=Heebo:wght@500;600&family=Josefin+Sans&family=Manrope:wght@700&family=Montserrat:ital,wght@1,200&family=Outfit:wght@600&family=Poppins:wght@100&family=Press+Start+2P&family=Quicksand&family=Saira+Condensed:wght@100&family=Tiro+Devanagari+Hindi&family=VT323&family=Varela+Round&display=swap');
:root{
--basic-font:'Outfit', sans-serif;
--green-color: rgba(212,253,87,255);
}
body {
text-align: center;
background-color: black;
}
h1 {
color: #fffcfc;
font-family: var(--basic-font);
}
.transfer{
color: var(--green-color);
}
form {
background-color: #232323;
padding: 20px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
display: inline-block;
width: 300px;
-webkit-box-shadow:0px 0px 61px 1px rgba(124,162,71,0.42);
-moz-box-shadow: 0px 0px 61px 1px rgba(124,162,71,0.42);
box-shadow: 0px 0px 61px 1px rgba(124,162,71,0.42);
}
input, select {
display: block;
margin: 10px 0;
margin-left: 30px;
}
input{
height: 40px;
width: 200px;
border: none;
border-radius: 5px;
background-color: rgb(28, 28, 28);
color: white;
}
input[type="submit"] {
background-color: var(--green-color);
color: #6f6f6f;
border: none;
font-family: var(--basic-font);
padding: 10px 20px;
cursor: pointer;
}
::placeholder{
padding: 10px;
}
.back{
font-size: 20px;
}
.back a{
text-decoration: none;
color: white;
}
.back-arrow{
font-size: 22px;
color: white;
}
#result {
font-weight: bold;
margin-top: 10px;
color: white;
font-family: var(--basic-font);
}