-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
129 lines (126 loc) · 2.22 KB
/
style.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
126
127
128
129
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap");
* {
padding: 0px;
margin: 0px;
font-family: "Roboto", sans-serif;
box-sizing: border-box;
}
/* body {
min-height: 100vh;
display: flex;
} */
nav {
display: flex;
justify-content: space-around;
align-items: center;
width: 25%;
margin-left: auto;
padding: 2em;
}
a {
text-decoration: none;
font-size: 14px;
color: rgba(0, 0, 0, 0.87);
}
a:hover {
text-decoration: underline;
font-style: bold;
}
nav img {
height: 20px;
}
nav button {
background-color: #4284f4;
color: #fff;
font-weight: bold;
padding: 7px 12px;
border: 1px solid #4284f4;
border-radius: 3px;
letter-spacing: 1px;
outline: none;
cursor: pointer;
}
nav button:hover {
opacity: 0.9;
}
main {
width: 50%;
height: 50%;
margin: 7em auto;
text-align: center;
}
main img {
margin: 0px auto;
padding-bottom: -45px;
height: 200px;
background-color: black;
/* width: 50px; */
/* margin-top: 1000px; */
}
input {
width: 85%;
padding: 13px;
padding-left: 40px;
font-size: 16px;
border-radius: 25px;
border: 1px solid gray;
outline: none;
letter-spacing: 1px;
transition: 100ms;
outline: none;
}
input:hover {
border: 1px solid #fff;
box-shadow: 0 0 2px rgba(0, 0, 0, 0.05), 0 0 2px rgba(0, 0, 0, 0.05),
0 0 3px rgba(0, 0, 0, 0.05), 0 0 4px rgba(0, 0, 0, 0.05),
0 0 4px rgba(0, 0, 0, 0.05), 0 0 5px rgba(0, 0, 0, 0.05),
0 0 5px rgba(0, 0, 0, 0.05);
}
.btn {
margin-top: 28px;
}
.btn button {
font-size: 14px;
padding: 9px 15px;
border: 1px solid transparent;
border-radius: 4px;
outline: none;
margin-right: 10px;
cursor: pointer;
color: #666;
transition: 100ms;
}
.btn button:hover {
border: 1px solid #aaaa;
}
.google-lang {
margin: 1em;
justify-content: space-around;
margin-top: 30px;
text-align: center;
}
.google-lang a {
color: #1a0dab;
margin-right: 1em;
}
footer {
background-color: #f2f2f2;
font-weight: 400;
}
.footer-top {
padding: 1em;
line-height: 15px;
padding-left: 20px;
}
.footer-bottom {
padding: 1em;
display: flex;
justify-content: space-between;
border-top: 1px solid gray;
}
.link-1 a {
margin-right: 1em;
}
.link-2 a {
margin-right: 1em;
}