forked from Rakshit17patel/Hactoberfest
-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
98 lines (89 loc) · 1.65 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
*{
margin:0;
padding: 0;
}
body{
background: url(bg.jpeg) center ;
background-size: cover;
background-attachment: fixed;
}
.title{
text-align:center;
font-size: 70px;
font-weight: bold ;
margin-top: 10px;
}
#table{
margin: auto;
margin-top:130px;
border: 5px solid greenyellow;
padding: 15px;
padding-bottom: 45px;
border-radius: 10px;
}
.number{
width:200px;
border:2px solid transparent;
text-align: center;
border-radius: 10px;
font-size:16px;
font-weight:200px;
padding: 10px 5px;
transition: border 0.5s;
background:grey;
margin:5px;
caret-color:greenyellow;
}
.btn{
border: 2px solid black;
background:white;
color:black;
font-size:16px;
border-radius: 5px;
cursor:pointer;
width:80px;
height:40px;
text-align: center;
}
.btn:hover{
border: 2px solid black;
background:black;
color:white;
font-size:16px;
border-radius: 5px;
cursor:pointer;
width:80px;
height:40px;
text-align: center;
}
.end{
text-align: center;
font-size: 25px;
}
.reset {
border: 2px solid black;
background:white;
color:black;
font-size:13px;
border-radius: 5px;
cursor:pointer;
width:80px;
height:40px;
text-align: center;
margin:10px;
}
.reset:hover{
border: 2px solid black;
background:black;
color:white;
font-size:13px;
border-radius: 5px;
cursor:pointer;
width:80px;
height:40px;
text-align: center;
margin:10px;
}
label{
font-size:25px;
}