-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
74 lines (63 loc) · 1.1 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
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
body {
margin: 30px;
font-family: 'Open Sans', sans-serif;
color: #2c0735;
background-color: #e7c6ff;
}
.fade-enter-active, .fade-leave-active {
transition: opacity 0.5s ease;
}
.fade-enter-from, .fade-leave-to {
opacity: 0;
}
input{
background-color: #bbd0ff;
padding: 6px;
text-align: center;
border-width: 0.1px;
border-color: #d1def9;
font-size: 14px;
}
strong{
text-decoration: underline;
}
button{
background-color: #bbd0ff;
padding: 6px;
text-align: center;
border-width: 0.1px;
border-color: #d1def9;
font-size: 14px;
}
button:hover {
background-color: #799df1; /* Green */
}
.card{
border-style: solid;
border-width: medium;
border-color: #caacfd;;
border-radius: 1px;
padding: 32px 46px;
width: 500px;
height: 120px;
background-color: #b997f4;
}
.fnext{
padding: 10px 10px;
background-color: #b997f4;
border-style: solid;
border-width: medium;
border-color: #caacfd;;
border-radius: 59px;
}
.green{
color: darkgreen;
}
.red{
color:darkred;
}
td{
text-align: center;
width: 300px
}