-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
91 lines (77 loc) · 1.34 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
body {
color: white;
font-family: Arial, sans-serif;
height: 100vh;
font-family: "MS Pゴシック";
font-smooth: never;
-webkit-font-smoothing : none;
margin: 0;
padding: 0;
background-color: #000000;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
}
header {
/* padding: 20px; */
/* background-color: rgb(226, 27, 120, 0.75); */
/* background-color: blueviolet; */
text-align: center;
padding-top: 15px;
padding-bottom: 1px;
line-height: 2vh;
/* flex: 0 0 calc(33.333% - 20px); */
}
h1 {
margin-bottom: 15px;
font-size: 24px;
color: blueviolet;
}
main {
padding: 20px;
}
.grid {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
margin-top: 20px;
}
article {
flex: 0 0 calc(33.333% - 20px);
margin-bottom: 20px;
padding: 20px;
background-color: rgb(211, 0, 105, 0.6);
border-radius: 5px;
box-sizing: border-box;
}
h2 {
margin: 0;
font-size: 20px;
}
p {
margin: 10px 0;
}
#exp strong{
color: blueviolet;
}
strong {
font-weight: bold;
}
span {
color: lime;
}
h4, h5{
margin-top: 0px;
margin-bottom: 0px;
}
a{
color: red;
text-decoration: none;
}
#exp em{
color: red;
font-size: larger;
}
#exp h3, h4, h5{
text-align: center;
}