-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjoogle_style.css
62 lines (56 loc) · 866 Bytes
/
joogle_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
h1{
text-align:center;
/*border: 1px solid black;
padding: 10px 40px 50px 150px;*/
margin: 230px 0 0 0;
font-size: 90px;
}
h1 span:nth-child(1){
color: #4285f4;
}
h1 span:nth-child(2){
color: #ea4335;
}
h1 span:nth-child(3){
color: #fcc629;
}
h1 span:nth-child(4){
color: #4285f4;
}
h1 span:nth-child(5){
color: #34a853;
}
h1 span:nth-child(6){
color: #ea4335;
}
form{
text-align:center;
}
input{
width:100%;
max-width:584px;
height:44px;
border-radius:24px;
border: 1px solid #dfe1e5;
margin: 25px 0 25px 0;
padding: 0 15px 0 15px;
}
input:focus{
outline:none;
}
button{
background-color: #f8f9fa;
min-width: 54px;
height: 36px;
border: 1px solid #f8f9fa;
border-radius: 4px;
cursor: pointer;
font-size: 14px;
padding: 0 16px 0 16px;
}
button:focus{
outline: 0.5px solid lightskyblue;
}
button:hover{
border: 1px solid #dfe1e5
}