-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
116 lines (102 loc) · 5.59 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
html {
box-sizing: border-box;
}
*,
*:before,
*:after {
box-sizing: inherit;
}
body {
background: #f5f5f5;
color: #333;
font-family: arial, helvetica, sans-serif;
font-size: 32px;
}
h1 {
font-size: 32px;
text-align: center;
}
p {
font-size: 20px;
line-height: 1.5;
margin: 10px auto 0;
max-width: 640px;
display: inline-block;
}
.main {
background: #fff;
border: 5px solid #ccc;
border-radius: 10px;
margin: 40px auto;
padding: 40px;
width: 80%;
max-width: 700px;
}
button {
background: #fff;
border: 2px solid #333;
border-radius: 5px;
color: #333;
font-size: 16px;
font-weight: bold;
padding: 1rem;
}
button:hover {
background: #27AE60;
border: 2px solid #27AE60;
color: #fff;
}
button.reset {
background: #f03737;
border: 2px solid #f03737;
color: #fff;
float: right;
}
button.reset:hover {
background: #fff;
border: 2px solid #f03737;
color: #f03737;
}
input {
border: 2px solid #333;
border-radius: 5px;
color: #333;
font-size: 25px;
margin: 0 0 20px;
padding: .5rem 1rem;
width: 100%;
}
#demo1 {
border: 2px solid #333;
border-radius: 5px;
background-color: #e9e9e9;
word-wrap: break-word;
font-size: 15px;
color: rgb(0, 0, 0);
margin: 0 0 20px;
padding: .5rem 1rem;
width: 100%;
font-family: arial, helvetica, sans-serif;
}
#demo2 {
border: 2px solid #333;
border-radius: 5px;
background-color: #e9e9e9;
word-wrap: break-word;
font-size: 15px;
color: rgb(0, 0, 0);
margin: 0 0 20px;
padding: .5rem 1rem;
width: 100%;
font-family: arial, helvetica, sans-serif;
}
#Bcopy {
float: right;
padding: 2px;
font-size: 15px;
}
#Bcopy:hover {
background: #3d3d3d;
border: 2px solid #3d3d3d;
color: #fff;
}