-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
98 lines (92 loc) · 1.6 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
footer {
width: 100%;
left: 0;
text-align: center;
font-size: 20px;
padding-top: 0;
padding-bottom: 0;
margin-top: 0;
margin-bottom: 0;
bottom: 0;
}
select {
height: 50px;
width: 500px;
border: solid black 2px;
background-color: linear-gradient(0deg, rgba(0, 3, 255, 1) 0%, rgba(2, 126, 251, 1) 100%);
}
body{
background-image: url(bank_image.jpg);
background-repeat: no-repeat;
background-position: top;
background-size: 1600px 1100px;
}
.navbar {
overflow: hidden;
background-color: #333;
position: fixed;
top: 0;
width: 100%;
}
/* Links inside the navbar */
.navbar a {
float: left;
display: block;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
/* Change background on mouse-over */
.navbar a:hover {
background: #ddd;
color: black;
}
.nav-item
{
font-size: 20px;
}
form {
margin: 60px;
margin-top: 15px;
max-width: 620px;
margin: auto;
padding: 10px;
}
form label {
display: block;
margin: 10px 0px;
}
form input[type="submit"] {
display: block;
padding: 10px 0;
margin: 1px;
border: 1px solid transparent;
background: #3262ab;
color: white;
border-radius: 5px;
width: 25%;
cursor: pointer;
transition: all 1s;
}
#drop
{
display: block;
margin-left: auto;
margin-right: auto;
}
.outbox {
position: relative;
}
.box {
position: absolute;
bottom: 0px;
top: 350px;
right: 50px;
font-size: 30px;
color: purple;
font-weight: 700;
font-style: italic;
font-family: Arial, Helvetica, sans-serif;
text-align: center;
}