-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
169 lines (141 loc) · 2.37 KB
/
styles.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
@import url("https://fonts.googleapis.com/css?family=Poppins");
* {
box-sizing: border-box;
padding: 0;
margin: 0;
}
body {
width: 100%;
height: 100vh;
font-family: "Poppins",sans-serif;
margin-top: 55px;
}
header{
padding: 5px 20px;
background-color: #FEF9A7 ;
position: absolute;
width: 100%;
top: 0;
}
aside {
float: left;
background-color: #FAC213;
width: 30%;
height: 100vh;
}
aside ul > li {
list-style: none;
margin: 15px;
border: 4px solid black;
padding: 5px 10px;
border-radius: 10px;
}
aside button {
display: block;
margin: 15px auto;
padding: 5px 30px;
border-radius: 5px;
font-weight: 900;
}
main {
width: 70%;
height: 100vh;
background-color: #F77E21;
display: flex;
flex-direction: column;
}
.button-group{
display: flex;
align-items: center;
justify-content: space-around;
margin: 20px 0;
}
.button-group button{
padding: 3px 10px;
}
.buttons{
display: flex;
justify-content: space-evenly;
margin: 10px;
}
.buttons button{
padding: 5px 10px;
border-radius: 5px ;
margin-top: 60px;
}
button:hover {
border: 1px solid black;
box-shadow: -5px 7px 0.5em -0.4em black;
transform: translateY(-0.25em);
transition: all 100ms ease-in-out;
}
.container-notemaker{
margin: 15px;
display: flex;
flex-direction: column;
}
input,textarea{
width: 100%;
margin-bottom: 20px;
padding: 2px 10px;
border: none;
border-radius: 5px;
/* background-color: transparent; */
}
textarea{
height: 80%;
margin-top: 30px;
font-size: 15px;
font-weight: 900;
}
form{
flex-grow: 1;
}
input{
font-size: 15px;
font-weight: 900;
}
input{
height: 30px;
}
input:focus,
textarea:focus {
background-color: #fff;
}
/*
input:focus::placeholder {
color:black
} */
::placeholder {
color: black;
}
.container-details h2{
margin-bottom: 10px;
font-size: 40px;
}
.container-details p{
font-size: 25px;
}
@media screen and (max-width: 768px) {
body {
display: flex;
flex-direction: column-reverse;
}
main {
width: 100%;
height: auto;
}
aside {
width: 100%;
}
header {
font-size: 15px;
}
.add-btn {
position: absolute;
top: 0;
right: 0;
margin-right: 20px;
padding: 2px 15px;
}
}