-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
136 lines (119 loc) · 2.59 KB
/
Copy pathstyles.css
File metadata and controls
136 lines (119 loc) · 2.59 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
125
126
127
128
129
130
131
132
133
134
135
136
body {
font-family: 'Roboto', sans-serif;
margin: 0;
padding: 0;
background-color: white;
}
.container {
max-width: 400px;
margin: 20px auto;
background-color: #B565A7;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
position: relative;
}
h1 {
color: #ffffff;
text-align: center;
font-size: 16px;
}
form {
text-align: left;
font-size: 14px;
}
label {
display: block;
margin: 10px 0 5px;
font-size: 15px;
color: #ffffff;
font-weight: bold;
}
input {
font-family: 'Roboto', sans-serif;
width: calc(100% - 20px);
padding: 8px;
margin-bottom: 10px;
box-sizing: border-box;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 14px;
}
/* Style the buttons */
button {
background-color: white;
color: black;
border: 2px solid #e7e7e7;
padding: 10px 15px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 14px;
font-family: 'Roboto', sans-serif;
margin: 4px 2px;
cursor: pointer;
border-radius: 8px;
}
#calculate {
background-color: white;
color: black;
border: 2px solid #04AA6D;
}
#interpretationButton {
background-color: white;
color: black;
border: 2px solid #008CBA;
}
#reset {
background-color: white;
color: black;
border: 2px solid #008CBA;
}
#result, #interpretation {
margin-top: 20px;
font-weight: bold;
font-size: 14px;
color: #ffffff;
font-family: 'Roboto', sans-serif;
font-style: oblique;
}
#designer {
margin-top: 10px;
font-size: 12px;
color: #333;
text-align: center;
font-family: 'Roboto', sans-serif;
font-style: italic;
}
.en {
font-family: 'Roboto', sans-serif;
font-size: 14px;
color: #ffffff;
background-color: #B565A7; /* Light Blue Background */
padding: 10px;
margin-bottom: 10px;
border: 1px solid #B565A7;
border-radius: 8px;
font-style: oblique;
font-weight: bold;
}
.fr {
font-family: 'Roboto', sans-serif;
font-size: 14px;
color: #ffffff;
background-color: #B565A7; /* Light Blue Background */
padding: 10px;
margin-bottom: 10px;
border: 1px solid #B565A7;
border-radius: 8px;
font-style: oblique;
font-weight: bold;
}
/* Add these styles at the end of your existing styles.css file */
.logo {
position: absolute;
top: 10px;
right: 80px;
width: 50px; /* Adjust the width as needed */
height: auto;
}