-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.nim
118 lines (101 loc) · 2.27 KB
/
styles.nim
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
import templates
proc styles*:string = tmpli css"""
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
* {
padding: 0;
margin: 0;
}
body {
background-color: #121212;
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.note-elem {
background-color: #232323;
position: relative;
display: flex;
flex-direction: column;
height: 280px;
width: 280px;
margin: 10px;
}
.inputfield {
background-color: #323232;
color: #FFFFFF;
font-family: 'Poppins', sans-serif;
font-weight: 400;
border: none;
outline: none;
}
.todoText {
padding-top: 10px;
padding-left: 10px;
color: #FFFFFF;
font-family: 'Poppins', sans-serif;
font-weight: 400;
font-size: 18px;
height: 240px;
border: none;
outline: none;
background: none;
resize: none;
}
.dueDateText {
color: #FFFFFF;
font-family: 'Poppins', sans-serif;
font-weight: 600;
height: 36px;
min-width: 280px;
text-align: center;
font-size: 22px;
}
button {
display: none;
position: absolute;
right: 0;
top: 0;
width: 30px;
height: 30px;
background-color: #C0392B;
outline: none;
color: white;
border: none;
font-family: 'Poppins', sans-serif;
font-weight: 600;
font-size: 22px;
}
.redContainer {
background-color: #C0392B;
}
.orangeContainer {
background-color: #D35400;
}
.turquoiseContainer {
background-color: #16A085;
}
.blueContainer {
background-color: #2980B9;
}
.greenContainer {
background-color: #27AE60;
}
h1 {
color: #FFFFFF;
font-family: 'Poppins', sans-serif;
font-weight: 600;
text-align: center;
}
#text {
height: 240px;
font-size: 18px;
resize: none;
}
.note-elem:hover button {
display: block;
}
#flatpickr {
background-color: #373737;
}
"""
export styles