-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
125 lines (95 loc) · 1.7 KB
/
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
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,700;1,300&family=Poppins:wght@300;400;500;600&display=swap');
* {
padding: 0;
margin: 0;
font-family: 'Noto Sans', sans-serif;
font-family: 'Poppins', sans-serif;
}
nav {
display: flex;
align-items: center;
justify-content: space-between;
background-color: black;
color: white;
padding: 19px 12px;
}
ul {
display: flex;
}
ul li {
list-style: none;
padding: 0 13px;
}
ul li a{
color: white;
text-decoration: none;
}
ul >li> a:hover{
color: rgb(192, 189, 205);
}
main{
min-height: 100vh;
}
.logo img{
width: 15px;
filter: invert(1);
}
.container{
max-width: 80vw;
margin: auto;
padding: 9px 15px;
}
.container h1{
padding: 12px 0;
}
input[type='text']{
min-width: 23vw;
padding: 3px 12px;
border: 2px solid black;
border-radius: 4px;
font-size: 20px;
}
.btn{
background: black;
color: white;
padding: 9px 12px;
border: 1px solid gray;
border-radius: 6px;
cursor: pointer;
}
#resultCont div::first-letter{
text-transform: uppercase;
}
footer{
font-size: 12px;
background-color: black;
color: white;
display: flex;
padding: 12px;
display: flex;
justify-content: center;
align-items: center;
}
@media only screen and (max-width: 600px)
{
.container{
font-size: 12px;
}
input[type='text'] {
width: 100%;
}
nav{
flex-direction: column;
}
.logo{
padding: 6px 0;
font-size: 12px;
}
.logo span{
font-size: 20px;
}
.logo img{
width: 15px;
filter: invert(1);
}
}