-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
49 lines (49 loc) · 831 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
46
47
48
49
* {
margin:0;
padding: 0;
box-sizing: border-box;
}
h1{
text-align: center;
padding-bottom: 50px;
font-size:65px;
}
body{
background-image: url("/home/kavya/Downloads/cloud.jpg");
background-attachment: fixed;
background-repeat: no-repeat;
background-size: cover;
}
.container{
width: 100%;
height: 100vh;
text-align: center;
padding:50px;
flex-direction: column;
display: flex;
justify-content: center;
align-items: center;
}
label{
display: block;
font-size: 40px;
}
.temp{
width: 50%;
padding: 50px 0;
box-shadow: 2px 2px 20px 2px;
}
.input{
display: inline-block;
}
.tem{
padding: 5px 10px;
margin: 10px;
font-weight: bold;
font-size: 40px;
text-align: center;
width: 270px;
}
.icon{
font-size: 30px;
}