-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
57 lines (49 loc) · 891 Bytes
/
styles.css
File metadata and controls
57 lines (49 loc) · 891 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
body{
margin: 0;
padding: 0;
height: 100vh;
}
.navbar{
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
padding: 8px 20px 8px 20px;
background-color: #0198fc;
}
.navbar-logo{
display: flex;
}
.navbar-logo a img{
margin-right: 12px;
transition: transform 0.3s ease-in;
/* border: 0.25px solid pink; */
}
.navbar-logo a img:hover{
transition: transform 0.3s ease-in;
transform: scale(1.17) rotateZ(-10deg);
}
.navbar-menu{
display: flex;
justify-content: space-between;
align-items: center;
}
.navbar-menu a{
padding: 10px;
}
.long-input{
width: 600px;
text-align: center;
}
a{
text-decoration: none;
color:rgb(225, 247, 247);
display: inline-block;
}
a:hover{
color: rgb(253, 253, 253);
border-radius: 20px;
}
.result{
width: 300px;
}