-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
71 lines (70 loc) · 1.12 KB
/
style.css
File metadata and controls
71 lines (70 loc) · 1.12 KB
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
*{
margin: 0px;
padding: 0px;
}
body{
background-color: #61d954;
font-family: "Poppins",sans-serif;
}
.container{
height:150px;
position: absolute;
top: 50%;
left:50%;
transform: translate(-50%,-50%);
background-color: #fff;
padding: 35px 25px;
width:auto;
border-radius:8px;
}
.main{
display:block;
}
.btn{
display: flex;
}
#textinput{
width:200px;
height:35px;
font-size:15px;
outline:none;
border:none;
border-radius:5px 0px 0px 0px;
padding:5px 20px;
background-color: #f5f5f5;
color:#333;
}
#showbtn{
width:25px;
height:45px;
color:#808080;
outline:none;
border:none;
border-radius:0px 5px 0px 0px;
padding:5px;
background-color: #f5f5f5;
}
#progressBarDiv{
width:265px;
height: 10px;
background-color:#ccc;
border-radius:0px 0px 5px 5px;
}
#progressBar{
width:0px;
height: 10px;
border-radius:0px 0px 5px 5px;
background-color:blue;
color: red;
}
#warning{
width:265px;
height:25px;
color: #707070;
margin-top:20px;
text-align: center;
font-weight: 400;
}
span{
color:#ccc;
}