-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
73 lines (63 loc) · 1.38 KB
/
Copy pathstyle.css
File metadata and controls
73 lines (63 loc) · 1.38 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
font-family: Georgia, 'Times New Roman', serif;
color: white;
background-image: url('789.jpg');
background-position: center;
background-repeat: no-repeat;
background-size: cover;
height: 100vh;
min-height: 100vh;
}
.app{
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
background: rgba(0,0,0, .7);
height: 100vh;
min-height: 100vh;
height: 100vh;
}
.header{
padding: 50px 20px 30px 20px; /* yukarı sağ aşağı sol */
}
.header h1{
font-size: 50px;
color: orangered;
text-shadow: 1px 3px rgba(0,0,0, .9);
}
.header input{
width: 100%;
padding: 10px;
background: transparent;
border: 1px ;
outline: none;
border-bottom: 2px solid orangered;
text-align: center;
color: #ffffff;
font-size: 1.1rem;
}
@media (max-width: 600px){.header h1{font-size:3.2rem;}.temp{font-size:6rem;}.city{font-size:2.2rem;}.header{width:100%;}}
.city{
font-size: 35px;
font-weight: 500;
margin-bottom: 10px;
text-shadow: 1px 3px rgba(0,0,0, .9);
}
.temp{
font-size: 100px;
font-weight: 700;
margin-bottom: 15px;
text-shadow: 1px 5px rgba(0, 0, 0, 1);
}
.desc{
font-size: 25px;
font-style: italic;
text-shadow: 1px 3px rgba(0, 0, 0, .9);
margin-bottom: 10px;
}