-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
62 lines (57 loc) · 1.34 KB
/
index.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
body {
background-color: rgb(214, 214, 214);
}
.containers {
position: relative;
max-width: 350px;
width: 100%;
border-radius: 15px;
padding: 10px 20px 20px;
background: #2a2d2e;
box-shadow: 0 5px 10px 5px rgba(0, 0, 0, .75);
margin-bottom: 100px;
}
.display {
height: 80px;
width: 100%;
outline: none;
padding: 0 1rem;
border-bottom: 1px solid #3a3b3b;
border-right: 1px solid #3a3b3b;
border-left: 1px solid #3a3b3b;
border-top: 1px solid #3a3b3b;
overflow: auto;
overflow-y: hidden;
text-align: right;
margin-bottom: 10px;
font-size: 30px;
color: #000e1a;
background: #2a2d2e;
border-bottom-left-radius: .5rem;
border-bottom-right-radius: .5rem;
border-top-left-radius: .5rem;
border-top-right-radius: .5rem;
pointer-events: auto;
}
.cal-box {
width: 300px;
margin: auto auto;
transition: all 0.8s ease-in-out;
}
button {
padding: 10px 10px;
font-size: 20px;
text-align: center;
cursor: pointer;
outline: none;
background-color: #292c2b;
border: none;
border-radius: 15px;
box-shadow: 0 3px #111010;
}
button:hover {background-color: #4923b3}
button:active {
background-color: #3e8e41;
box-shadow: 0 5px #666;
transform: translateY(4px);
}