-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforget_style.css
120 lines (96 loc) · 1.3 KB
/
forget_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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
body{
margin:0;
font-family: Arial, Helvetica, sans-serif;
font-size: 100%;
width:100%;
}
h1 {
margin:0.6em;
padding:0;
font-size: 1.5em;
font-weight: normal;
}
a,
a:visited {
color: green;
text-decoration: none;
}
a:hover,
a:focus {
text-decoration: underline;
}
header {
text-align: center;
letter-spacing: 0.1em;
margin-bottom: 3em;
}
header a {
display: inline-block;
margin: 0.3em;
font-size: 1.1em;
}
article {
width: 90%;
margin: 1em auto;
line-height: 1.4;
}
#txt-input{
display:block;
border:1px solid green;
width: 95%;
min-height:18em;
margin: 2em auto;
}
button{
display:block;
border:1px solid green;
margin: 2% auto;
padding: .3em .6em;
font-size: 1em;
color:green;
background:#fff;
}
button:hover,
button:focus {
color:#fff;
background:green;
}
#printbut{
display:none;
}
#text-display{
margin:1em 2em;
}
@media screen and (min-width: 50em) {
header {
margin-bottom: 5em;
}
header a {
margin: 0.5em;
font-size: 1.3em;
}
h1 {
margin: 1em;
font-size: 1.8em;
}
.front {
background: url(backdrop.jpg) top / cover no-repeat;
}
#txt-input {
width:60%;
}
article {
width: 60%;
}
}
@media print {
header, #enterstuff{
display:none;
}
#printbut{
display:none !important;
}
#text-display{
margin:2em;
}
}