Intro.scss
668 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
.intro {
width: 240px;
padding-bottom: 6rem;
#id-input {
border: none;
display: block;
width: calc(100% - 1.4rem);
border-bottom: 1px solid #aaa;
margin: 1.2rem 0;
margin-top: 2.4rem;
padding: 0.7rem 0.7rem;
color: #333;
border-radius: .25rem;
&::placeholder {
color: #aaaaaa;
}
&:focus {
outline: none;
}
}
#search-button {
width: 100%;
margin: 0;
padding: .8rem .6rem;
border: none;
font-size: .8rem;
color : #fafafa;
background-color: lightskyblue;
border-radius: .25rem;
&:focus {
outline: none;
border: 1px solid deepskyblue;
}
}
}