-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
86 lines (74 loc) · 2.01 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
html body {
margin: 0;
padding: 0;
background-color: rgb(225, 149, 149);
}
.display-items{
width: 100%;
height:60px;
padding: 40px 0;
background: red;
border-top-left-radius: 14px;
border-top-right-radius: 14px;
}
.button-items{
padding: 20px 20px 0px 20px;
}
/* .row-cal{
width: 280px;
float: left;
} */
.btn:hover{
background: coral;
color: aliceblue;
}
input[type=button]{
width:60px;
height:60px;
float: left;
padding: 0;
margin: 5px;
box-sizing: border-box;
line-height: 30px;
background-color: rgb(92, 182 , 205);
border-radius: 75px;
border: none;
font-size: 30px;
font-weight: 700;
color: aliceblue;
cursor: pointer;
}
input [type=text]{
width:275px;
height:60px;
float: left;
padding: 0;
margin: 0 25px;
box-sizing: border-box;
line-height: 60px;
background-color: none;
border:none;
font-size: 30px;
font-weight: 700;
cursor: pointer;
}
.container-cal{
position: fixed;
top:50%;
left:50%;
border: 20px;
background-color: blueviolet;
border-radius: 15px;
padding-bottom: 18px;
width: 325px;
transform: translate(-50%,-50%);
box-shadow: 0px 0px 10px 0px rgba(123,235,168,175);
}
.cal-bg{
background:-moz-linear-gradient(90deg, rgba(255, 255, 0, 1) 0%, rgba(0, 188, 212, 1) 50%, rgba(238, 130, 238, 1) 100%);
background:-webkit-linear-gradient(90deg, rgba(255, 255, 0, 1) 0%, rgba(0, 188, 212, 1) 50%, rgba(238, 130, 238, 1) 100%);
background:-o-linear-gradient(90deg, rgba(255, 255, 0, 1) 0%, rgba(0, 188, 212, 1) 50%, rgba(238, 130, 238, 1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ee82ee', endColorstr='#FFFF00', GradientType=0 );
background:-ms-linear-gradient(90deg, rgba(255, 255, 0, 1) 0%, rgba(0, 188, 212, 1) 50%, rgba(238, 130, 238, 1) 100%);
background:linear-gradient(90deg, rgba(255, 255, 0, 1) 0%, rgba(0, 188, 212, 1) 50%, rgba(238, 130, 238, 1) 100%);
}