-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
58 lines (52 loc) · 956 Bytes
/
index.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
@import url("fonts/font.ttf");
.flag {
width: 500px;
height: 500px;
margin-top: 50px;
background-repeat: no-repeat;
background-size: cover;
transition: all 0.5s ease;
}
h1 {
font-size: 50px;
font-family: "PlusJakartaSans-Medium", Arial, Helvetica, sans-serif;
color: white;
margin-bottom: 30px;
}
.flag:hover {
cursor: pointer;
}
input::placeholder {
color: rgb(214, 214, 214);
}
body {
background-color: rgb(41, 41, 41);
display: flex;
flex-direction: column;
margin: 0;
width: 100vw;
height: 100vh;
padding: 0;
justify-content: center;
align-items: center;
}
input:focus {
border-width: 10px;
}
input {
border-radius: 10px;
border: #19AC63 solid 0px;
transition: border-width 0.2s;
outline: none;
color: white;
background-color: rgb(110, 110, 110);
padding: 30px;
font-size: 30px;
width: 80%;
}
@media screen and (max-width: 800px) {
.flag {
width: 300px;
height: 300px;
}
}