-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
70 lines (61 loc) · 898 Bytes
/
style.css
File metadata and controls
70 lines (61 loc) · 898 Bytes
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
body{
font-family: Arial, Helvetica, sans-serif;
background:#0f172a;
color:white;
display:flex;
justify-content:center;
align-items:center;
height:100vh;
margin:0;
}
.container{
background:#1e293b;
padding:30px;
border-radius:12px;
width:320px;
box-shadow:0 10px 30px rgba(0,0,0,0.4);
}
h1{
margin-bottom:20px;
font-size:22px;
}
input{
width:100%;
padding:10px;
border:none;
outline:none;
border-radius:6px;
font-size:16px;
margin-bottom:20px;
background:#334155;
color:white;
}
.card{
background:#334155;
padding:20px;
border-radius:10px;
text-align:center;
}
.temp{
font-size:36px;
margin:10px 0;
}
.condition{
opacity:0.8;
}
button{
margin-top:10px;
padding:6px 12px;
border:none;
border-radius:6px;
background:#22c55e;
color:white;
cursor:pointer;
}
.error{
color:#f87171;
margin-top:10px;
}
.loading{
opacity:0.7;
}