-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
57 lines (57 loc) · 1.01 KB
/
style.css
File metadata and controls
57 lines (57 loc) · 1.01 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
body{
background-color:#B5C99A;
}
header{
text-align: center;
margin-top: 80px;
}
#container{
align-items: center;
justify-content: center;
text-align: center;
height: 500px;
width: 600px;
margin: auto;
margin-top: 65px;
}
#cal_con{
display:grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
grid-gap: .9rem;
}
#cal_con :first-child{
grid-column-start: 1;
grid-column-end: 5;
}
.btn{
font-weight: bold;
font-size: large;
border: 2px solid black;
border-radius: 30px;
background-color: #FFC95F;
cursor: pointer;
padding: 25px;
margin: 0 10px;
}
.btn:hover{
background-color: #FFF9C9;
}
#input{
margin: 10px;
border: 2px solid black;
border-radius: 15px;
padding: 30px;
text-align: right;
flex: 1;
font-size: 45px;
box-shadow: none;
}
.btn-2{
background-color:white;
}
.btn-2:hover{
background-color: rgb(194, 201, 206);
}
h1{
font-size:5rem;
}