-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
108 lines (103 loc) · 2.24 KB
/
style.css
File metadata and controls
108 lines (103 loc) · 2.24 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
*{
margin: 0px;
padding: 2px;
box-sizing: border-box;
}
body{
height: 50vh;
position:relative;
align-items: center;
display: flex;
flex-direction: column;
justify-content: center;
/*background-color: tomato;*/
background-image: url('2964914.jpg');
background-size: 100%;
/*opacity: 50%;*/
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
color: whitesmoke;
}
.Instructions{
position: relative;
margin-top: 200px;
height: 100vh;
font-size: 28px;
font-style: oblique;
font-family: monospace;
color: lemonchiffon;
}
.instructions2{
position: relative;
margin-top: 50px;
height: 10vh;
font-size: 16px;
font-style: normal;
font-family: cursive;
color: rgb(203, 228, 243);
}
.location{
/*width: 570px;*/
width: 400px;
background: rgb(189, 106, 245);
border: transparent;
border-radius: 2mm;
font-size: 25px;
font-style: italic;
font-weight: bold;
}
.dataInput{
height: 500px;
position:relative;
}
.place{
height: 40px;
width: 500px;
font-size: 20px;
border-radius: 2mm;
background: lightblue;
border: black;
margin-right: 0px;
/*mask-border-source:inherit;*/
cursor:text;
}
.Show{
height: 40px;
width: 150px;
margin-left: 0px;
background: darkturquoise;
font-weight: bold;
border-radius: 4mm;
border: black;
border-width: 2px;
}
.Show:hover{
background: rgb(6, 6, 63);
color: chartreuse;
}
.City{
margin-top: 80px;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
font-weight: bolder;
font-size: 50px;
color: rgb(87, 219, 142);
}
.temperatureDetails{
padding-left: 2px;
padding-top: 10px;
}
span{
opacity: 0;
transition: all 2s ease;
transform: translateY(50px);
}
span.fade{
opacity: 1;
transform: translateY(0px);
}
.feels, .temperature, .pressure{
font-size: 25px;
font-weight: bolder;
color: black;
font-family: sans-serif;
font-style: italic;
}