-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
100 lines (88 loc) · 1.58 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
html {
width: 100vw;
height: 100vh;
}
body {
font-family: Verdana, sans-serif;
font-size: clamp(14px, 1.5vw, 16px);
background: linear-gradient(#ffffff, #399aff, #0009b5);
background-repeat: no-repeat;
background-attachment: fixed;
box-sizing: border-box;
margin: 0;
padding: 1rem;
width: auto;
height: auto;
}
.editor {
height: 100%;
width: 100%;
resize: none;
color: #bbbbbb;
background: #1e1e1e;
}
.editor-wrapper {
font-size: 1rem;
height: 20em;
width: 100%;
flex-direction: row;
}
.compiler {
width: 100%;
display: flex;
align-items: center;
justify-content: space-evenly;
flex-wrap: wrap;
row-gap: 1rem;
padding: 0.5em;
}
.wrapper {
padding: 1rem;
display: flex;
align-items: center;
justify-content: center;
gap: 1rem;
width: 100%;
height: 100%;
}
.flex-col {
flex-direction: column;
}
@media screen and (max-width: 800px) {
.wrapper {
flex-direction: column;
}
}
.compile-button {
font-size: 24px;
padding: 1rem 3rem;
border-radius: 12px;
background-image: linear-gradient(
to right,
#399aff 0%,
#0009b5 51%,
#399aff 100%
);
background-color: transparent;
background-repeat: no-repeat;
box-shadow: 0 0 20px #eee;
background-size: 200% auto;
transition: 0.5s;
}
.compile-button:hover {
background-position: right center;
}
.title {
font-size: 250%;
background: linear-gradient(#399aff, #0009b5);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.logo {
width: 5rem;
height: 5rem;
}
.version {
color: hsl(0, 0%, 10%);
}