-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcds.css
100 lines (85 loc) · 1.74 KB
/
cds.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
98
99
100
* {
box-sizing: border-box;
}
body {
background-image: url( "../images/bg-rain-drops-on-window-shield.jpg" );
background-size: cover;
background-attachment: fixed;
}
.navbar {
position: fixed;
top: 0;
left: 0;
right: 0;
display: flex;
justify-content: space-between;
height: 50px;
padding: 8px 20px;
background-color: rgba( 64, 144, 172, 0.65 );
color: white;
}
.navbar .pointer:hover {
opacity: 0.75;
}
.navbar > * {
width: 300px;
display: flex;
flex-direction: row;
align-items: center;
}
.navbar .menu > *, .navbar .actions > * {
display: inline-block;
padding: 8px;
border-radius: 2px;
margin: 0px 4px;
background-color: rgba( 64, 144, 172, 1 );
}
.navbar .menu {
justify-content: flex-start;
}
.navbar .menu-input {
background-color: transparent;
padding: 0;
}
.navbar .menu-input input {
width: 120px;
padding: 4px 0.5em;
border: none;
border-radius: 2px;
outline: none;
background-color: rgba( 64, 144, 172, 1 );
color: white;
font-size: 1.15em;
line-height: 1.4;
color: black;
}
.navbar .menu-input input:focus {
background-color: white;
}
.navbar .app-title {
justify-content: space-around;
font-family: "Comic Sans", "Comic Sans MS", cursive;
font-size: 1.3em;
}
.navbar .actions {
justify-content: flex-end;
}
.board-container {
display: flex;
height: 100vh;
overflow-y: hidden;
}
.board-menu {
position: fixed;
top: 50px;
right: 0px;
left: 0px;
display: flex;
justify-content: space-between;
align-items: center;
height: 40px;
padding: 0 20px;
color: black;
background-color: rgba( 128, 128, 128, 0.3 );
color: white;
}