-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle1.css
106 lines (94 loc) · 1.85 KB
/
style1.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
*{
margin:0;
padding:0;
box-sizing:border-box;
}
body{
height:100vh;
width:100%;
background:rgb(0, 0, 0);
display:flex;
justify-content: center;
align-items: center;
}
.box{
height:60vh;
width:550px;
background-color:rgb(0, 0, 0) ;
border:2px solid rgb(255, 251, 251);
border-radius: 6px;
box-shadow: 2px 2px 10px 5px red;
overflow: hidden;
}
.box #disp{
height:10vh;
width:100%;
color:rgb(211, 242, 6);
font-size: 40px;
justify-content: center;
display:flex;
text-align: center;
font-weight: bold;
/* padding-top: 15px; */
line-height:10vh;
}
.box form{
height:35vh;
width:100%;
background-color: white;
line-height: 45vh;
text-align:center;
}
.box form input{
width:130px;
border:none;
outline:none;
border-bottom:3px rgb(0, 0, 0);
color:rgb(0, 0, 0);
background-color:transparent;
font-size:60px;
text-align:center;
}
.box form input::placeholder{
font-size: 20px;
color:black;
font-weight:700px;
font-weight: bold;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button{
-webkit-appearance:none;
margin:0;
}
.box .btn{
height:15vh;
width:100%;
display:flex;
justify-content: space-around;
align-items: center;
}
.box .btn button{
padding:5px 10px;
font-size: 25px;
background-color: #292828;
color:white;
border:none;
border-radius:5px;
cursor:pointer;
transition: 0.5s;
}
.box .btn button:hover{
background-color:#8e44ad;
}
.stopwbutton {
background-color: #292828;
color:white;
margin-top:700px;
padding:10px 30px;
font-size: 25px;
cursor:pointer;
font-weight: bold;
}
.stopwbutton:hover{
background-color:#8e44ad;
}