-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
102 lines (90 loc) · 1.59 KB
/
style.css
File metadata and controls
102 lines (90 loc) · 1.59 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
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
font-size: 120%;
margin: 0;
background-color: #484848;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande',
'Lucida Sans', Arial, sans-serif;
background-image: url('https://source.unsplash.com/1600x900/?mountains');
}
.card {
opacity: 0.85;
font-family: inherit;
background-color: black;
color: white;
padding: 2em;
border-radius: 25px;
width: 100%;
max-width: 420px;
margin: 1em;
}
.search {
display: flex;
align-items: center;
justify-content: center;
}
button {
padding: 0.5em;
margin: 0.5em;
width: 3.5em;
height: 3.5em;
border: none;
border-radius: 70%;
cursor: pointer;
outline: none;
background-color: #1d1a1a81;
color: white;
}
button:hover {
background-color: #5a5454;
transition: 0.5s ease-in-out;
}
input {
border: none;
font-family: inherit;
border-radius: 18px;
background-color: #1d1a1a81;
color: white;
cursor: pointer;
outline: none;
margin-right: 5px;
padding: 0.4em;
width: 70%;
font-size: 120%;
}
.temp {
margin: 0;
font-size: 50px;
}
.sunset {
margin: 1pt;
padding: 0;
/* text-decoration: underline;
text-decoration-style:double ; */
}
.sunrise {
margin: 1pt;
padding: 0;
/* text-decoration: underline;
text-decoration-style:double */
}
.city {
text-decoration: underline;
text-decoration-style: double;
}
/*
.icon {
display: inline-block;
} */
.description {
font-size: 25px;
margin-bottom: 10px;
font-style: italic;
}
.flex {
display: flex;
align-items: center;
}