-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
95 lines (80 loc) · 1.3 KB
/
main.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
body {
height: 100%;
padding: 0;
font-family: "Inter", sans-serif;
background-color: rgb(248, 248, 248);
overflow: hidden;
}
html {
height: 100vh;
}
.red {
color: #DB4437;
}
.yellow {
color: #F4B400;
}
.green {
color: #0F9D58;
}
.blue {
color: #4285F4;
}
.search {
width: 500px;
text-align: center;
}
.article {
width: 80%;
margin: 0 auto;
}
.error {
text-align: center;
}
a, a:visited, a:hover, a:active {
text-decoration: none;
color: #0645AD;
}
.copyright {
position: fixed;
bottom: 3px;
left: 50%;
transform: translate(-50%, 3px);
font-size: 14px;
}
.center {
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.noodle-logo {
font-size: 80px;
letter-spacing: -10px;
font-weight: 700;
text-align: center;
}
form {
display: flex;
align-items: center;
justify-content: center;
}
input {
padding: 10px;
border-radius: 20px;
border: 1px solid rgb(187, 187, 187);
background-color: #ececec;
outline: none;
font-size: 16px;
width: 300px;
margin-right: 10px;
}
button {
padding: 10px 20px;
border-radius: 20px;
border: none;
background-color: #0077cc;
color: white;
font-size: 16px;
cursor: pointer;
}