-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
72 lines (68 loc) · 1.46 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
71
72
*{
margin: 0px;
padding: 0px;
font-size: 1.5em;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.container{
width: 100%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
padding-top: 20px;
}
.input-container{
width: 97%;
}
.cal-field{
width: fit-content;
padding: 10px;
border:0px solid;
margin-top: 5px;
border-radius: 5px;
backdrop-filter:inherit;
box-shadow: inset 0px 0px 12px 0px rgb(101 101 101);
}
.grid{
width: inherit;
}
.grid div{
margin: 5px;
display: flex;
justify-content: space-between;
}
button, input{
padding: 25px;
margin: 2px;
font-size: large;
align-self: flex-end;
flex-grow: inherit;
}
input{
direction: ltr;
font-size: large;
align-self: flex-start;
border:0px solid;
border-radius: 5px;
outline: 0px;
padding-left: 12px;
width: 100%;
box-shadow: inset 0px 0px 12px 0px rgb(101 101 101);
}
button{
border:0px;
box-shadow: 0px 0px 3px 0px rgb(101 101 101);
}
button:hover{
background-color: rgb(116, 116, 116);
}
button:focus{
box-shadow: inset 0px 0px 12px 0px rgb(101 101 101);
}
button.control{
background: rgb(0, 153, 255);
}
button.control:hover{
background-color: rgb(24, 121, 185);
}