-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
47 lines (47 loc) · 886 Bytes
/
style.css
File metadata and controls
47 lines (47 loc) · 886 Bytes
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
*{
margin: 0;
padding: 0;
}
body{
font-family: Arial, Helvetica, sans-serif;
background-color: rgb(84, 135, 90);
}
.container{
padding-top: 10%;
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
gap: 20px;
}
.code-area{
background-color: rgb(255, 255, 255);
border-radius: 10px;
padding-bottom: 5%;
}
.ca1{
flex: 2;
}
.ca2{
flex: 1;
}
.code-area-header{
padding: 10px 0px;
display: grid;
grid-template-columns: 50% 30%;
align-items: center;
text-align: center;
}
button {
background-color: #4CAF50;
border: none;
color: white;
padding: 20px 0px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
border-radius: 3px;
cursor: pointer;
}