-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
103 lines (96 loc) · 1.77 KB
/
style.css
File metadata and controls
103 lines (96 loc) · 1.77 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
103
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
*{
padding: 0px 0px;
font-family: 'Poppins', sans-serif;
}
nav{
display:flex;
align-items: center;
justify-content: space-between;
background-color: #212121;
color:aliceblue;
padding: 0px 15px;
}
ul{
display: flex;
}
ul li{
list-style: none;
padding: 0px 23px;
font-size: small;
}
ul li a{
color:white;
text-decoration: none;
}
ul li a:hover{
color: rgb(178, 227, 248);
}
.logo img{
width: 18px;
filter: invert();
}
.logo span{
text-align: center;
font-size: 20px;
}
main{
min-height: 80vh;
padding: 2px;;
}
.container{
/* background-color: #c4c0c0bd; */
max-width: 80vw;
margin:auto;
padding: 10px;
border: none;
border-radius: 15px;
margin-bottom: 13px;
}
.container h1{
padding: 10px 0;
}
#email{
min-width: 25vw;
padding:6px 6px;
border:2px solid #212121;
border-radius: 15px;
}
.btn{
background-color: #212121;
color: aliceblue;
border: none;
padding: 9px 18px;
border-radius: 18px;
cursor: pointer;
}
#resultCont div::first-letter{
text-transform: uppercase;
}
footer{
background-color: #212121;
color: aliceblue;
font-size: 12px;
padding: 12px;
display: flex;
justify-content: center;
align-items: center;
}
@media only screen and (max-width: 600px){
body{
/* background-colorgb(27, 206, 206)44); */
}
nav{
flex-direction: column;
}
.logo{
padding: 6px 0px;
}
.logo img{
width: 18px;
filter: invert();
}
.conatiner{
font-size: 1em;
}
}