-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathatm.css
124 lines (122 loc) · 2.13 KB
/
atm.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
*{
margin: 0;
padding: 0;
}
body{
background-image: url("./images\ \(17\).jpeg");
background-repeat: no-repeat;
background-size: cover;
}
header{
text-align: center;
font-size: 40px;
color: #fff;
animation: header 9s infinite;
}
#container{
background-color: rgb(64, 62, 62);
width: 70%;
height: 75vh;
border-radius: 7px;
padding: 40px;
margin: auto;
margin-top: 50px;
box-shadow: 0 0 15px rgb(228, 220, 220);
}
#sub-container{
padding-top: 70px;
display: grid;
grid-template-columns: 50% 50%;
}
button{
font-size: 18px;
width: 200px;
height: 55px;
margin-bottom: 15px;
margin-left: 15px;
background-color: #fffeff;
color: #000;
border: blue;
border-radius: 10px;
cursor: pointer;
}
button:hover{
background-color: rgb(169, 165, 165);
}
b{
font-size: 1.6em;
padding-top: 30px;
color: #fff;
}
#input{
margin-top: 10px;
text-align: center;
}
input{
width: 340px;
height: 50px;
outline: none;
font-weight: 700;
padding-left: 20px;
color: #000;
}
input::placeholder{
color: #000 ;
}
.display{
font-size: 25px;
}
@keyframes header {
0%{
color: rgb(85, 82, 82);
}
55%{
color: #5151e5;
}
100%{
color: #fff;
}
}
@media only screen and (max-width: 500px) {
header{
text-align: center;
font-size: 25px;
padding-top: 0;
}
#container{
width: 100%;
height: 80vh;
border-radius: 7px;
padding: 0;
margin: 0;
margin-top: 0;
}
#sub-container{
padding-top: 30px;
padding-left: 10px;
}
button{
width: 150px;
height: 70px;
margin-bottom: 10px;
margin-left: 15px;
background-color: #fffeff;
color: #000;
border: blue;
border-radius: 5px;
cursor: pointer;
}
button:hover{
background-color: rgb(169, 165, 165);
}
b{
font-size: 1.6em;
}
#input{
margin-top: 40px;
text-align: center;
}
input{
width: 250px;
}
}