-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStyle.Css
70 lines (70 loc) · 1.5 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
*{
margin: 0;
padding: 0;
}
body{
background-image: url(Images/1.jpg);
background-position: center;
background-attachment: fixed;
background-repeat: no-repeat;
background-size: cover;
margin:auto;
}
table{
text-align: center;
margin: auto;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border: 1px solid black;
border-radius: 5px;
padding: 10px 30px;
background: rgba(255, 255, 255,0.8) ;
}
table tr td input[type=button]{
width: 85%;
padding: 18px 22px;
margin: 10px 5px;
box-sizing: border-box;
cursor: pointer;
}
table tr td input[type=button]:hover{
background-color: rgb(77, 75, 75);
}
table tr td input{
text-align: center;
font-weight: bolder;
font-style: normal;
font-size: 20px;
color: white;
background-color: rgb(134, 134, 134);
border: 1px solid rgb(134, 134, 134);
border-radius: 5px;
}
.Clear{
width: 98%;
padding: 18px 22px;
text-align: center;
font-weight: bolder;
font-style: normal;
color: white;
background-color: rgb(134, 134, 134);
border: 1px solid rgb(134, 134, 134);
border-radius: 5px;
cursor: pointer;
}
.Clear:hover{
background-color: rgb(77, 75, 75);
}
#Display{
margin-bottom: 5px;
padding: 15px 22px;
width:80%;
font-weight: bolder;
font-size: 20px;
color: white;
background-color: rgb(134, 134, 134);
border: 1px solid rgb(134, 134, 134);
border-radius: 5px;
}