-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
73 lines (72 loc) · 1.44 KB
/
index.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
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
body {
margin: 0;
display: block;
position: absolute;
width: 100%;
height: 100%;
overflow: auto;
color: white;
font-family: 'Montserrat', sans-serif;
}
.background {
background: url(/background.png);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
opacity: 0.9;
filter: brightness(0.5);
}
.section {
display: inline-flex;
position: relative;
width: 49.5%;
height: 100%;
margin: 0;
vertical-align: middle;
align-items: center;
justify-content: center;
}
.box {
display: flex;
position: relative;
width: 200px;
height: 200px;
border: 5px solid rgba(111, 121, 215, 0.6);
align-items: center;
justify-content: center;
}
img {
display: block;
position: relative;
width: 150px;
height: 150px;
border-radius: 100%;
}
.content {
display: block;
width: 80%;
text-align: left;
}
table {
width: 90%;
line-height: 22px;
word-break: break-all;
font-size: 15px;
}
a:hover{
color:rgb(0, 255, 251);
cursor: pointer;
}
@media only screen and (max-width: 600px) {
.section {
width: 100%;
height: 45%;
}
}