-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
94 lines (93 loc) · 2.39 KB
/
Copy pathstyle.css
File metadata and controls
94 lines (93 loc) · 2.39 KB
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
body
{
font-family: 'Gamja Flower', cursive; background-color: #fffff2;
}
h1
{
font-family: 'Chelsea Market', cursive; text-shadow: 2px 2px #fffff2;
}
header>h2 {
color: #ffffff;
}
header
{
background-color: #e4572e; text-align: center;
}
h4
{
text-align: center;
}
#note-count
{
text-align: center; font-size: 20px;
}
.add-note
{
box-shadow: 3px 3px 0 0 #e4572e;
border: 4px solid #050401;
padding: 10px ;
margin-left: 45%;
height: 45px; width: 150px;
}
#note-count
{
font-weight: bold;
}
.add-form
{
display: none; position: fixed;
top: 0; right: 0;
bottom: 0; left: 0; background-color: rgba(0, 0, 0, 0.5);
z-index: 1;
}
.add-form form
{
width: 400px; margin: 10% auto; border: 3px solid transparent; padding: 1rem 2.5rem;
background: #fff;
}
.add-form form input, .add-form form textarea
{
width: 70%; display: block; border: 2px solid #050401; border-radius: 5px; margin: 10px auto; padding-left: 10px; outline: none;
}
.add-form form input
{
height: 30px;
}
.add-form form textarea
{
height: 50px;
}
.add-form form button
{
margin: 10px auto; color: #fff; background: #e4572e; padding: 10px 20px; border: 0; margin-left: 140px;
}
article
{
position: relative; border: 4px solid #050401; box-shadow: 3px 3px 0 0 #e4572e;
margin-left: 25%; margin-right: 25%; padding-left: 2px; overflow: auto ; margin-top: 20px;
text-align: justify;
}
img
{
float: right; margin-left: 4px; position: relative; padding-right: 4px;
}
footer
{
text-align: center; padding: 2px;
}
form>p
{
display: inline; margin: 2px; box-shadow: 3px 3px 0 0 #e4572e; margin: 1px;
}
input [type="text"]
{
box-shadow: 3px 3px 0 0 #e4572e; font-family: 'Gamja Flower' cursive;
}
input [type="submit"]
{
box-shadow: 3px 3px 0 0 #e4572e; font-family: 'Gamja Flower' cursive;
}
.code
{
font-family: 'Gamja Flower' cursive;
}