-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpagestyle_dot.css
More file actions
149 lines (117 loc) · 2.1 KB
/
pagestyle_dot.css
File metadata and controls
149 lines (117 loc) · 2.1 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
/* 総本山ではない */
@import url('https://fonts.googleapis.com/css?family=Source+Code+Pro');
@font-face {
font-family: "dot_font";
src: url('./dotFontTtf.ttf') format('truetype');
src: url('./dotFontOtf.otf') format('opentype');
}
:root {
--default-font-family: "dot_font", monospace; /* 普通の文字 */
--source-code-font: "Source Code Pro", monospace; /* ソースコード用 */
}
@media screen and (min-width:981px) {
html {
background-color: black;
}
}
html {
background-color: black;
}
* {
text-align: center;
margin-right: auto;
margin-left: auto;
font-family: var(--default-font-family);
}
*:not(input, small, h2, h3, button) {
font-size: 20px;
}
*:not(input, button, textarea) {
color: white;
}
small {
font-size: 15px;
}
#user, #area, #button {
border-radius: 10px 10px;
font-size: 25px;
}
#box, .box {
width: 70%;
border: 3px solid white;
background-color: darkblue;
}
#button, .button {
border: 2px solid darkblue;
width: 95%;
height: 50px;
}
#button:hover, .button:hover {
border-color: blue;
}
#user, .button, #button, .text {
width: 95%;
}
.emoji {
width: 30px;
height: 30px;
}
.card {
border: 5px inset blue;
width: 95%;
height: 80vh;
background-size: cover;
}
#title_text {
font-family: sans-serif;
}
#area {
width: 95%;
height: 430px;
}
#two_box {
width: 90%;
display: flex;
}
#two_box > #special_box {
width: 50%;
}
.no_warp {
display: inline-block;
}
hr {
width: 80%;
}
/* テーブル関連 */
th {
border: 3px inset white;
background-color: darkblue;
}
td {
border: 3px inset white;
background-color: darkblue;
}
table {
width: 95%;
}
textarea {
width: 70%;
height: 30vh;
}
.menu {
width: 10%;
}
/* ソースコード関連 */
#code > code > pre {
font-family: var(--source-code-font);
font-size: 15px;
text-align: left;
overflow: scroll;
}
#code {
background-color: rgb(26, 26, 26);
color: white;
border: 3px white solid;
height: 100%;
width: 90%;
}