-
Notifications
You must be signed in to change notification settings - Fork 0
/
css01.css
81 lines (72 loc) · 1.39 KB
/
css01.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
#canvas {
border: 6px solid;
border-radius: 7px;
margin:20px;
}
.srcEdit {
resize: none;
overflow: scroll;
height:800px;
width:1100px;
font-size: 20px;
font-weight: bold;
background-color: rgb(200,200,200);
border:4px solid;
margin:16px;
}
header {
background-color: black;
padding: 1px;
text-align: center;
font-size: 28px;
color: white;
}
footer {
background-color: black;
padding: 10px;
text-align: center;
color: white;
}
section {
display: -webkit-flex;
display: flex;
flex-wrap: wrap;
justify-content: space-around;
}
body
{
background-color: rgb(71, 62, 62);
}
shdrWin {
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
background: #ccc;
padding: 20px;
background-color: rgb(43, 60, 83);
}
srcEditor {
-webkit-flex: 3;
-ms-flex: 3;
flex: 3;
padding: 10px;
background-color: rgb(43, 60, 83);
}
@media (max-width: 600px) {
section {
-webkit-flex-direction: column;
flex-direction: column;
}
}
.button {
background-color: rgb(44, 184, 102);
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: auto;
cursor: pointer;
}