forked from Hail1024/nonickcraft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtp-styles_white.css
72 lines (63 loc) · 1.27 KB
/
tp-styles_white.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
/* コーポレートロゴとか言う名の神フォントの導入 */
@font-face {
font-family: 'corpo-b';
src: url(font/Corporate-Bold.woff);
}
@font-face {
font-family: 'corpo-m';
src: url(font/Corporate-Medium.woff);
}
/* 全般設定 */
body {
background-color: #dde1ea;
color: #000000;
overflow-x: hidden;
overflow-y: hidden;
padding-top: 60px;
font-family: corpo-m;
}
/* ヘッダー */
header {
position: fixed;
height: 60px;
width: 100%;
top: 0;
left: 0;
background: #ffffff;
box-shadow: 0 2px 5px rgba(0,0,0,0.26);
}
/* サイトのタイトル */
.headertitle {
font-size: 35px;
padding: 10px 5px;
font-family: corpo-b;
}
/* のうにくのあたま */
.headerhead {
width: 56px;
height: 56px;
padding: 2px 5px;
}
/* ヘッダーDiscordアイコン */
.headerdiscord {
width: 30px;
padding: 18px 10px;
}
/* ヘッダーDiscordテキスト(矛盾) */
.headerdiscordtext {
margin-left: auto;
}
/* ヘッダーに載る要素を揃える */
.headerline {
display: flex;
justify-content: start;
}
/* サイドバー */
.sideber {
float: left;
height: 100vh;
width: 250px;
background: #E7EAF0;
box-shadow: 0 2px 5px rgba(0,0,0,0.26);
margin: 10px;
}