-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcal.css
More file actions
77 lines (77 loc) · 1.41 KB
/
cal.css
File metadata and controls
77 lines (77 loc) · 1.41 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
*{
margin:0;
padding:0;
font-family: 'Courier New', Courier, monospace;
}
.cal{
height: 800px;
display: flex;
flex-direction: column;
flex-wrap: wrap;
align-content: center;
align-items: center;
margin-top: 48px;
}
h1{
color:burlywood;
font-weight: bolder;
font-size: 54px;
margin-left: 50px;
width: 22%;
}
button.sim {
height: 63px;
width: 63px;
border: none;
border-radius: 13px;
background-color: lightgray;
color: black;
font-size: 31px;
cursor: pointer;
}
.btn{
width: 20%;
height: 405px;
font-size: 21px;
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-between;
align-content: space-between;
margin-top:20px;
margin-left: 50px;
}
.result {
font-size: 48px;
margin-left: 25px;
margin-top: 39px;
border: 1px solid black;
width: 22%;
height: 56px;
}
#PING_IFRAME_FORM_DETECTION span{
display: block;
}
.reset{
margin-left: 25px;
border:none;
background-color: lightgray;
color:black;
height: 41px;
width: 8%;
border-radius: 15px;
margin-top: 25px;
font-size: 25px;
cursor: pointer;
}
.display {
height: 54px;
border: 1px solid black;
width: 26%;
margin-left: 25px;
font-size: 51px;
display: flex;
justify-content: flex-start;
flex-direction: row-reverse;
flex-wrap: wrap;
}