-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLearntoCode.css
100 lines (79 loc) · 1.53 KB
/
LearntoCode.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
/* Add this to your existing CSS */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #000000;
}
header {
background-image: radial-gradient(blue, black, aqua);
color: #000000;
text-align: center;
padding: 20px;
border-radius: 10%;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
section {
margin: 30px 0;
padding: 20px;
border: 1px solid #ccc;
background-image: radial-gradient(blue,black, blue);
color: white;
}
footer {
text-align: center;
padding: 10px;
background-color: #000000;
color: #fff;
}
textarea {
width: 100%;
height: 200px;
padding: 10px;
margin-bottom: 10px;
background-color: rgb(194, 194, 194);
}
.code-container {
display: flex;
flex-direction: column;
gap: 10px;
margin-bottom: 10px;
}
button {
padding: 10px 20px;
background-color: #000000;
color: #fff;
border: none;
cursor: pointer;
}
.output {
margin-top: 20px;
}
iframe {
border: 1px solid #ccc;
width: 100%;
height: 300px;
}
#styledPreview {
background-color: rgb(194, 194, 194);
}
.w3-bar-item {
display: inline;
color: pink;
font-size: 25px;
margin: 0 10px;
}
.w3-button {
color: black;
}
.w3-button:hover {
color: rgb(255, 255, 255);
}
.w3-black {
background-image: radial-gradient(rgb(0, 0, 0) 5%,
rgb(18, 2, 161) 10%,
black 80%);
text-align: center;
position: fixed;
width: 100%;
}