-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
116 lines (98 loc) · 1.78 KB
/
index.css
File metadata and controls
116 lines (98 loc) · 1.78 KB
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
:root {
--font-main: 'Open Sans', sans-serif;
--font-title: 'Roboto Condensed', sans-serif;
font-family: var(--font-main);
}
#program-title {
font-family: var(--font-title);
font-size: 40px;
}
#current-file {
font-size: 10px;
}
#btn-mode {
padding-left: 7px;
padding-bottom: 5px;
width: 40px;
height: 40px;
font-size: 20px;
border: none;
border-radius: 100%;
background-color: white;
}
#btn-mode:hover {
background-color: black;
transition: color .2s ease-in;
}
.outer-container {
width: 100vw;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
}
.button {
width: 100px;
height: 40px;
font-size: 20px;
}
nav {
margin-top: 20px;
width: 90%;
max-width: 800px;
}
nav .container {
height: 100%;
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
}
nav ul {
display: flex;
gap: 10px;
}
main {
padding: 20px;
padding-bottom: 0;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
}
main textarea {
padding: 10px;
padding-bottom: 0;
width: 90%;
max-width: 800px;
min-width: 800px;
height: 100%;
box-sizing: border-box;
resize: none;
border-radius: 10px;
font-size: 12pt;
}
footer {
margin: 10px;
margin-left: 5px;
margin-bottom: 5px;
}
@media (prefers-color-scheme: dark) {
#program-title {
color: white;
}
#btn-mode {
background-color: black;
}
#btn-mode:hover {
background-color: white;
transition: color .2s ease-in;
}
#current-file {
color: white;
}
body {
background-color: black;
}
}