-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.css
98 lines (84 loc) · 1.59 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
*{
box-sizing: border-box;
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif;
}
body{
margin: 0;
padding: 0;
height: 100vh;
width: 100vw;
overflow: hidden;
}
.root{
display: flex;
height: 100%;
flex-direction: column;
}
.web_helper{
text-align: center;
font-size: 30px;
font-weight: 500;
padding: 0;
margin: 0 20px;
}
nav{
width: 100%;
display: flex;
align-items: center;
padding: auto 10px;
height: 70px;
border-bottom: 1px solid rgb(199, 197, 197);
}
main{
height: 100%;
width: 100%;
}
.topbar_list{
display: flex;
list-style: none;
justify-content: start;
margin: 0;
margin-left: auto;
padding: 0;
/* width: 100%; */
}
.topbar_list button{
display: flex;
align-items: center;
padding: 10px 15px;
margin: 15px 10px;
font-size: 18px;
cursor: pointer;
user-select: none;
border-radius: 5px;
}
.topbar_list button svg{
margin-right: 16px;
}
.tasks{
color: #1878e6ec;
background-color: #dbecff;
border: 1px solid white;
}
.tasks:hover{
background-color: #bcdcff;
border: 1px solid #1878e6ec;
}
.editor{
color: #9418e6ec;
background-color: #f1e2ff;
border: 1px solid white;
}
.editor:hover{
background-color: #e9d1ff;
border: 1px solid #9418e6ec;
}
.sshare{
color: #e618d5ec;
background-color: #fad7f5;
border: 1px solid white;
}
.sshare:hover{
background-color: #fcc7f5;
border: 1px solid #e618d5ec;
}