forked from electron/electron-quick-start
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathindex.css
73 lines (64 loc) · 1.04 KB
/
index.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
body {
padding: 0;
margin: 0;
}
.page {
height: 100vh;
color: #999;
background-color: rgb(40, 44, 52);
}
.header {
position: relative;
height: 50px;
text-align: center;
}
.search {
-webkit-appearance: none;
outline: none;
width: 45%;
height: 30px;
line-height: 30px;
padding: 0 8px;
margin-top: 10px;
font-size: 14px;
border-radius: 4px;
color: inherit;
background-color: rgb(60, 64, 72);
border: 1px solid #222;
}
.search:hover {
-webkit-appearance: none;
border-color: #1890ff;
}
.actions {
position: absolute;
top: 10px;
left: 10px;
font-family: monospace;
font-size: 20px;
}
.action {
display: inline-block;
box-sizing: border-box;
width: 30px;
height: 30px;
line-height: 30px;
text-align: center;
border-radius: 50%;
border: 1px solid;
cursor: pointer;
transition: all ease-in-out 0.5s;
}
.action:hover {
color: #f8f8f8;
border: none;
background-color: #222;
box-shadow: 0 0 10px 2px #999;
}
.main {
display: flex;
}
.webview {
width: 320px;
height: 480px;
}