forked from Tamim0133/Geometry-Genius
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
78 lines (66 loc) · 1.19 KB
/
style.css
File metadata and controls
78 lines (66 loc) · 1.19 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
body {
margin: 0;
font-family: Arial, sans-serif;
text-align: center;
}
.card {
background-color: #fff;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
text-align: center;
margin: 20px;
padding: 20px;
}
.card h2 {
font-size: 24px;
margin-bottom: 10px;
}
.card p {
color: #4a5568;
margin-bottom: 15px;
font-size: 14px;
}
.card p span {
color: #2d3748;
}
.card button.edit-btn {
background: none;
border: none;
color: #3182ce;
cursor: pointer;
font-size: 12px;
padding: 0;
margin-left: 5px;
}
.card button.edit-btn:hover {
color: #2b6cb0;
}
.form-group {
margin-bottom: 15px;
text-align: left;
}
.form-group label {
display: block;
margin-bottom: 5px;
font-size: 14px;
}
.form-group input {
width: 100%;
padding: 8px 10px;
border: 1px solid #e2e8f0;
border-radius: 5px;
font-size: 14px;
box-sizing: border-box;
}
.card button.calc-btn {
background-color: #3182ce;
color: white;
font-size: 16px;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
}
.card button.calc-btn:hover {
background-color: #2b6cb0;
}