-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
114 lines (108 loc) · 1.77 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
*{
box-sizing: border-box;
}
body {
background: #10101B;
height: 100vh;
}
.container {
margin-top: 30px;
}
.half-width {
height: 570px;
background: #222436;
padding: 30px;
text-align: center;
}
.generate-btn{
margin-top: 140px;
width: 180px;
padding: 50px;
border-radius: 50%;
border: 8px solid #39458C;
background-color: #495BC3;
color: #ffffff;
font-weight: bold;
font-size: 20px;
text-align: center;
}
.generate-btn:focus{
outline: none;
box-shadow: none;
}
input[type='text']{
background-color: #3D4153;
padding: 10px 0px;
color: #ffffff;
width: 80%;
margin: 0 auto;
border: 2px solid #858299;
height: 50px;
padding: 10px;
}
input[type='text']:focus {
background-color: #3D4153;
color: #fff;
font-size: 20px;
}
.numbers {
margin: 30px 0;
}
.calc-typed {
margin-top: 20px;
font-size: 45px;
text-align: right;
color: #fff;
}
.calc-button-row {
width: 100%;
}
.button {
width: 20%;
background: #425062;
color: #fff;
padding: 20px 0;
margin: 5px;
display: inline-block;
font-size: 25px;
text-align: center;
vertical-align: middle;
margin-right: -4px;
border-radius: 10px;
cursor: pointer;
}
.blink-me {
color: #E0B612;
}
.submit-btn {
border: none;
margin-top: 20px;
padding: 10px 120px;
border-radius: 5px;
background: #495BC3;
color: #fff;
}
.notify {
color: #fff;
text-align: center;
margin: 0 auto;
background: #222436;
margin-top: 20px;
border-radius: 15px;
padding: 5px 20px;
}
.notify-section{
width: 35%;
margin: 0 auto;
}
.action-left {
color: #FF3C5F;
margin-top: 10px;
}
/* ===========main part =================================*/
.notify{
display: none;
}
.pin-position {
text-align: center;
}