forked from jennbrewer/weatherApp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.scss
executable file
·91 lines (75 loc) · 1.11 KB
/
style.scss
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
body {
font-family: sans-serif;
background: #EEE;
}
form {
width: 50%;
margin: 0 auto;
position: relative;
padding-top: 70px;
text-align: center;
transition: all 1s;
}
input[type="text"] {
padding:10px;
font-size: 24px;
}
input[type="submit"] {
padding: 12px;
font-size: 24px;
background: tomato;
color:white;
border:none;
}
input[type="submit"]:hover {
background: lightblue;
}
.suchWeather {
position: absolute;
left: 2%;
bottom: 2%;
}
.suchWeather p {
font-size: 20px;
color:#222;
line-height: 1em;
}
.suchWeather p.location {
font-size: 30px;
line-height: 1.2;
}
h1 {
font-size: 37px;
color:#222;
width: 600px;
padding-top: 60px;
height: auto;
margin: 0 auto;
padding:30px;
transition: all 1s;
}
.h1Back {
background: rgba(255,255,255,0.5);
border-radius: 5px;
margin-top: 100px;
}
.images {
display: inline-block;
position: absolute;
right: 35px;
top: 35px;
}
.images img {
border-radius: 50%;
}
.suchWeather {
background: rgba(238, 238, 238, 0.4);
width: 220px;
height: 180px;
border-radius: 5px;
margin:50px;
padding:10px;
}
.fb-share-button {
height:16px;
}