-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
89 lines (74 loc) · 1.22 KB
/
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
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
/*This .css file belongs to the Weather App
Description: This is a weather app that shows weather of pre-defined some cities*/
/*Left section*/
* {
padding: 0;
margin: 0;
}
#leftHalf {
position: relative;
width: 50%;
float: left;
height: 98vh;
background-color: #0080ff;
z-index: 1010101010;
font-family: Arial, Helvetica, sans-serif, Helvetica, sans-serif;
font-size: 1.75em;
}
#rightContent {
padding-left: 10%;
padding-top: 15%;
}
/*Right Section*/
#rightHalf {
position: relative;
width: 50%;
float: right;
height: 98vh;
background-color: #eee;
z-index: 1010101010;
font-family: Arial, Helvetica, sans-serif;
}
#leftContent {
padding-left: 25%;
padding-top: 40%;
}
/*City and state styling*/
#cityState {
font-size: 1.5em;
}
/*Dat and Time styling*/
#dayTime {
margin-top: 1%;
font-size: 0.75em;
}
/*CLimate styling*/
#climate {
margin-top: 1%;
font-size: 0.75em;
}
/*Temperature stylin*/
#temperature {
margin-top: 5%;
font-size: 2em;
font-weight: bolder;
}
/*Search bar styling*/
#search {
position: fixed;
top: 60%;
}
#cel:hover {
color: red;
cursor: pointer;
}
#cel {
color: blue;
}
#fah:hover {
color: red;
cursor: pointer;
}
#fah:active {
color: blue;
}