forked from lewmoore/notepad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
93 lines (83 loc) · 1.85 KB
/
index.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
body {
/* background-color: red; */
background-attachment: fixed;
background-image: url("https://hdwallsource.com/img/2016/8/kill-bill-sword-computer-wallpaper-54203-55936-hd-wallpapers.jpg");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
font-family: 'Nanum Pen Script', cursive;
font-size: 22px;
min-height: 700px;
}
h1 {
font-size: 80px;
margin-left: 200px;
}
.content {
background-attachment: fixed;
background-image: url("https://pre00.deviantart.net/c2c1/th/pre/i/2005/119/c/a/lined_paper_by_ll_stock.jpg");
background-position: center;
background-repeat: no-repeat;
background-size: 100%;
/* background-color: #fff; */
height: 400px;
margin-top: 20px;
margin-left: 200px;
margin-bottom: 40px;
padding: 20px;
position: absolute;
width: 402px;
}
h3 {
font-size: 30px;
}
a {
color: black;
}
/* visited link */
a:visited {
color: black;
text-decoration: line-through;
}
/* mouse over link */
a:hover {
color: red;
}
/* selected link */
a:active {
color: orange;
}
textarea {
background-attachment: fixed;
background-image: url("https://pre00.deviantart.net/c2c1/th/pre/i/2005/119/c/a/lined_paper_by_ll_stock.jpg");
background-position: center;
background-repeat: no-repeat;
background-size: 100%;
border: solid 2px red;
font-family: 'Nanum Pen Script', cursive;
font-size: 20px;
height: 100px;
margin-left: 200px;
padding: 20px;
vertical-align: top;
width: 400px;
/* margin-bottom: 0px; */
}
textarea:focus {
outline: none !important;
border:1px solid red;
box-shadow: 0 0 10px #cc0000
}
button {
background-color: #DA9929;
border-radius: 10px;
color: black;
cursor: pointer;
font-family: 'Nanum Pen Script', cursive;
font-size: 20px;
height: 45px;
margin-bottom: 10px;
margin-left: 200px;
margin-top: 10px;
width: 90px;
}