-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
83 lines (75 loc) · 1.92 KB
/
styles.css
File metadata and controls
83 lines (75 loc) · 1.92 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
78
79
80
81
82
83
body {
font-family: "Avenir Medium", "Helvetica Neue";
background-color: #f4f4f4;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-image: url(https://raw.githubusercontent.com/LadyDaddy/ot_timecalc/main/Screenshot%202024-08-31%20at%207.54.43%E2%80%AFPM.png?token=GHSAT0AAAAAACW3MFNTDJSTPPZ7IPZYD7WMZWT4T3Q);
}
.container {
background-color: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1, h2 {
text-align: center;
font-family: "Avenir Medium", "Helvetica Neue";
font-style: normal;
font-weight: bolder;
font-size: x-large;
text-decoration: underline;
}
form {
display: flex;
flex-direction: column;
}
label {
margin-top: 10px;
font-family: "Avenir Medium", "Helvetica Neue";
text-align: left;
}
input {
margin-bottom: 15px;
padding: 8px;
border-radius: 4px;
border: 1px solid #ccc;
font-family: "Avenir Medium", "Helvetica Neue";
font-size: x-large;
}
button {
padding-top: 5px;
padding-right: 5px;
padding-left: 5px;
padding-bottom: 5px;
/* [disabled]border-bottom-left-radius: 4px; */
/* [disabled]border-bottom-right-radius: 4px; */
/* [disabled]border-top-right-radius: 4px; */
/* [disabled]border-top-left-radius: 4px; */
border: thin solid;
background-color: #FBA8FA;
color: #000000;
font-size: 20px;
cursor: pointer;
-webkit-box-shadow: 0px 0px;
box-shadow: 0px 0px;
font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
font-weight: bolder;
width: 50%;
display: block;
/* [disabled]bottom: 0%; */
right: 50px;
left: 50px;
margin-top: auto;
margin-right: auto;
margin-bottom: auto;
margin-left: auto;
}
button:hover {
background-color: #FF48FC;
}
#result {
margin-top: 20px;
}