-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
124 lines (105 loc) · 2.06 KB
/
style.css
File metadata and controls
124 lines (105 loc) · 2.06 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.background {
background-color: #3FBEBC;
min-height: 100vh;
padding: 30px;
display: flex;
flex-direction: column;
}
.webContainer {
display: flex;
flex-direction: column;
text-align: center;
background-color: #015958;
padding: 48px ;
min-height: 100vh;
border-radius: 20px;
}
.title {
color: #FCA19E;
text-align: center;
font-family: jsMath-cmmi10;
font-size: 104px;
text-shadow: 2px 4px 3px #9c5654;
}
.label {
text-align: center;
color: white;
font-family: Arial;
font-size: 22px;
padding: 30px;
}
.numberInput {
font-size: 20px;
color: black;
padding: 5px;
}
.numberInput:hover {
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}
.cardContainer{
display: flex;
flex-direction: row;
justify-content: space-evenly;
padding: 20px;
}
.cardBorder {
display: flex;
flex-direction: column;
text-align: center;
background-color: #D9D9D9;
border-radius: 5px;
width: 808px;;
height: 428px;
box-shadow: 8px 8px 8px 8px rgba(0, 0, 0, 0.2);
margin-top: 120px;
}
.card {
display: flex;
flex-direction: column;
align-items: center;
width: 767px;
height: 390px;
background: #FFFFFF;
border-radius: 23px;
padding: 50px;
margin: 20px;
}
.card:hover {
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}
.text {
font-family: jsMath-cmmi10;
font-weight: bold;
color: #4d4c4c;
font-size: 30px;
padding: 15px;
}
.textInput {
color: #000000;;
text-align: center;
font-size: 18px;
padding: 5px;
width: 493px;
height: 208px;
border-radius: 8px;
}
.textInput:hover {
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}
.button {
border: 0;
padding: 6px 18px;
border-radius: 3rem;
background-color: #F1A19F;
color: #fff;
font-size: 20px;
cursor: pointer;
}
.button:hover {
box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
}