-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcal.css
More file actions
42 lines (38 loc) · 715 Bytes
/
cal.css
File metadata and controls
42 lines (38 loc) · 715 Bytes
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
*{
margin: 0;
padding: 0;
}
.button{
width: 50px;
height: 50px;
font-size: 25px;
margin: 2px;
background-color: rgb(42, 28, 58);
border: none;
color: white;
cursor: pointer;
transition: all 0.5s;
}
.button:hover{
border-radius: 100%;
background-color: lightgreen;
color: black;
font-size: 20px;
}
.text{
width: 203px;
margin: 5px;
color: rgb(42, 28, 58);
font-size: 25px;
padding: 5px;
}
.bg{
background-image: linear-gradient(to right,#e91e63,#3f51b5);
height: 100vh;
}
.main{
position: absolute;
top: 50%;
left: 50%;
transform: translateX(-50%) translateY(-50%);
}