Skip to content

Commit ff3c33e

Browse files
Update style.css
1 parent 6cfc692 commit ff3c33e

File tree

1 file changed

+41
-1
lines changed

1 file changed

+41
-1
lines changed

project-7-temperature-converter/style.css

Lines changed: 41 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,44 @@ body {
77
align-items: center;
88
font-family: Arial, Helvetica, sans-serif;
99
color: whitesmoke;
10-
}
10+
}
11+
12+
.container {
13+
background: rgba(255, 255, 255, 0.3);
14+
padding: 20px;
15+
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
16+
border-radius: 10px;
17+
width: 85%;
18+
max-width: 450px;
19+
min-width: 320px;
20+
display: flex;
21+
flex-direction: column;
22+
align-items: center;
23+
}
24+
25+
.heading {
26+
font-size: 36px;
27+
}
28+
29+
.temp-container {
30+
width: 100%;
31+
padding: 15px;
32+
font-weight: bold;
33+
font-size: 22px;
34+
}
35+
36+
.input {
37+
width: 220px;
38+
font-family: monospace;
39+
padding: 5px;
40+
float: right;
41+
outline: none;
42+
background: rgba(255, 255, 255, 0.3);
43+
border-color: rgba(255, 255, 255, 0.6);
44+
color: darkgreen;
45+
font-size: 20px;
46+
}
47+
48+
/* .input::placeholder {
49+
color: darkgray;
50+
} */

0 commit comments

Comments
 (0)