-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStyles.css
51 lines (44 loc) · 949 Bytes
/
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
.Container{
/* box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5); */
max-width: 600px;
border-radius: 2px;
margin: 10px auto;
padding-left: 10px;
display: grid;
margin-top: 50px;
justify-items: center;
background-color: rgb(57, 57, 57);
}
.Container:hover{
box-shadow: -8px -8px 0px rgba(0, 0, 0, 0.3);
}
.h1{
font-family: Arial, Helvetica, sans-serif;
text-align: center;
color: white;
}
.h2,.result{
margin-bottom: 15px;
font-size: 20px;
font-family: Arial, Helvetica, sans-serif;
color: white;
}
.button{
background-color: #358bed;
border: none;
color: white;
padding: 6px;
margin-bottom: 5px;
cursor: pointer;
border-radius: 4px;
}
.button:hover{
background-color: #318ffc;
}
.date{
max-width: 300px;
margin-bottom: 10px;
padding: 5px;
cursor: pointer;
width: 300px;
}