-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
86 lines (64 loc) · 1.29 KB
/
style.css
File metadata and controls
86 lines (64 loc) · 1.29 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
*{
margin:0;
font-family: "Roboto Condensed", sans-serif;
}
html, body{
width:100%;
height:100%;
background-image: url(https://images.unsplash.com/photo-1498496294664-d9372eb521f3?auto=format&fit=crop&w=1950&q=80);
background-size:cover;
background-repeat:no-repeat;
display:flex;
align-items: center;
justify-content: center;
}
.card{
background-color: white;
box-shadow: 10px 10px 22px -6px rgba(0,0,0,0.33);
min-height:40%;
padding:20px;
display:flex;
flex-direction: column;
justify-content: space-between;
text-align: center;
}
.get-weather{
margin-bottom:5px;
}
.get-weather input{
font-size:20px;
}
.get-weather input:focus{
outline:none;
}
.get-weather input[type=text]{
border:1px solid lightgray;
border-radius: 5px;
box-sizing: border-box;
width: 65%;
padding:5px;
margin-right: 2%;
}
.bttn{
background-color:#ededed;
border:none;
box-sizing: border-box;
width:15%;
padding:5px;
text-align: center;
cursor: pointer;
}
#condition{
font-size:90px;
margin:5px;
}
.card-text{
display:flex;
flex-direction: row;
justify-content: space-between;
font-size:20px;
}
#name-container{
max-width: 80%;
text-align:left;
}