-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
95 lines (81 loc) · 1.88 KB
/
styles.css
File metadata and controls
95 lines (81 loc) · 1.88 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
body {
background: linear-gradient(100deg, #153677, #4e085f)
}
.textview{
display: inline-block;
margin: 2px;
width: 198px;
height: 29px;
font-size: 20px;
font-weight: bold;
background-color: #DAF5FF;
border: none;
}
.equalButton {
cursor: pointer;
display: inline-block;
margin: 2px;
width: 42px;
height:91px;
outline: none;
font-size: 20px;
font-weight: bold;
border-radius: 10px;
}
.button {
cursor: pointer;
display: inline-block;
margin: 2px;
width: 42px;
height: 42px;
font-size: 20px;
font-weight: bold;
border-radius: 10px;
outline: none;
transition: all 600ms ease 0s;
}
.button:active, .allclearButton:active,.equalButton:active{
background-color: #3e8e41;
box-shadow: 0 3px #666;
transform: translateY(2px);
}
.button:hover,.equalButton:hover {
background-color: #DAF5FF;
box-shadow: 0px 0px 2px #FFF, inset 0px -20px 1px #9AD2EB;
border-top: 2px solid #FFF;
border-right: 2px solid #FFF;
border-bottom: 2px solid #AE5700;
border-left: 2px solid #AE5700;
}
.allclearButton {
border-radius: 10px;
color: #FFF;
margin: 2px;
width: 42px;
height: 42px;
text-shadow: -1px -1px 0px #44006F;
background-color: #D20000;
border-top: 2px solid #FF8484;
border-right: 2px solid #FF8484;
border-bottom: 2px solid #800000;
border-left: 2px solid #800000;
box-shadow: 0px 0px 2px #030303, inset 0px -20px 1px #B00000;
outline: none;
}
h1{
color:#2f58cd;
font-size: 52px;
text-justify: newspaper;
text-align: center;
font-family: Arial, Helvetica, sans-serif;
}
.container{
background-color: rgb(7, 17, 21);
background-size: cover;
position:absolute;
top:50%;
left:50%;
transform:translateX(-50%) translateY(-50%);
box-shadow: rgb(0, 0, 0) 0px 0px 30px;
transition: all 0.5s ease 0s;
}