-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
45 lines (45 loc) · 933 Bytes
/
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
body{
margin: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: linear-gradient(to linear-gradient);
font-family: Arial;
color: rgb(100, 14, 180);
}
.containor{
background: rgba(255, 255, 255, 0.3);
padding: 20px;
border-radius: 10px;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
width: 85%;
max-width: 450px;
min-width: 350px;
display: flex;
flex-direction: column;
align-items: center;
}
.heading{
font-size: 30px;
}
.temp-containor{
width: 100%;
padding: 15px;
font-weight: bold;
font-size: 18px;
}
input{
width: 250px;
font-family: Arial, Helvetica, sans-serif;
float: right;
padding: 5px;
outline: none;
background: rgba(255, 255, 255, 0.3);
border-color: rgba(0, 0, 0, 0.6);
color: darkgreen;
font-size: 18px;
}
input::placeholder{
color: darkgrey;
}