-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
102 lines (100 loc) · 1.31 KB
/
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
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
body
{
padding-right: 0px !important;
}
.main-container
{
max-width: 60%;
}
.title-area
{
height: 40px;
}
#note_title
{
border: 1px solid black;
}
.data-area
{
min-height: 200px !important;
}
.note_container
{
min-width: 100%;
}
.notes
{
width: 100%;
}
#note_data
{
resize: none; border: 1px solid black
}
footer
{
min-height: 70px;
display: flex;
background-color: #343a40!important;
color: white;
justify-content: center;
align-items: center;
}
button
{
margin-bottom: 5px;
}
.main-container
{
min-height: 100vh;
}
.fa
{
padding: 3px 0 0 0;
cursor:pointer;
}
.fa-pencil-square-o
{
margin-left: 8.5rem;
}
.fa-eye
{
margin-left: 8.5rem;
}
@media screen and (max-width: 900px)
{
.main-container
{
max-width: 80% !important;
}
}
@media screen and (max-width: 500px)
{
.main-container
{
max-width: 90% !important;
}
.card
{
max-width: 90% !important;
}
.note_container
{
display: flex;
flex-direction: column;
align-items: center;
}
.notes
{
display: flex;
flex-direction: column;
align-items: center;
}
.fcontent h6
{
font-size: 0.8rem !important;
}
.ml3
{
font-size: 1.5rem;
}
}