-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
97 lines (90 loc) · 1.68 KB
/
styles.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
87
88
89
90
91
92
93
94
95
96
97
*{
font-size: 18px;
font-family: Georgia, 'Times New Roman', Times, serif;
}
body{
display: flex;
align-items: center;
flex-direction: column;
}
h1{
text-align: center;
font-size: 22px;
padding: 10px 15px;
color: brown;
}
#main_cont{
display: flex;
flex-direction: column;
justify-content: center;
width:300px;
padding: 20px 20px;
background-color: rgb(206, 230, 230);
justify-content: space-between;
border-radius: 18px;
box-shadow: 2px 2px 10px gray;
}
#main_cont>div{
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
padding: 10px 20px;
margin-bottom: 10px;
}
#main_cont>div>label{
margin-bottom: 10px;
display: flex;
text-align: center;
}
button{
padding: 10px 25px;
font-size: 20px;
box-shadow: 2px 2px 8px rgb(192, 192, 192);
border-radius: 10px;
cursor: pointer;
border: solid;
border-width: 1px;
background-color: black;
color: rgb(188, 218, 230);
}
input{
padding: 8px 0px 8px 10px;
width: 200px;
border-radius: 12px;
border-style: solid;
border-color: rgb(129, 167, 209); color: rgb(113, 117, 130);
box-shadow: 2px 2px 10px rgb(167, 195, 194);
}
#after{
margin-top: 0px;
}
#current>span{
color: green;
font-weight: bold;
}
#after>span{
color: brown;
font-weight: bold;
}
button:hover{
opacity: 0.9;
}
#hours{
margin-top: -2px;
line-height: 25px;
}
#hours_value{
color: blue;
font-weight: bold;
}
input:hover{
border-color: rgb(38, 86, 87);
}
input:after{
content:"*"
}
#asterisk{
margin-left: 2px;
color: red;
}