-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
104 lines (86 loc) · 1.35 KB
/
index.css
File metadata and controls
104 lines (86 loc) · 1.35 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
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
* {
margin: 0;
padding: 0;
font-family: 'Poppins', sans-serif;
color: white;
}
body {
background-color: black;
}
.container {
display: flex;
}
#box1 img {
width: 105px;
display: block;
text-align: center;
margin: 7px auto;
}
#box2 {
width: 80%;
}
#box1 {
font-size: 13px;
padding: 3px 50px;
background-color: purple;
}
.layout,
h1 {
padding: 5px 30px;
}
#box1 i {
padding: 5px;
}
li {
display: flex;
}
#box2 li {
border-bottom: 1.5px solid #e6e1e1;
margin: 2px 12px;
padding: 6px 0px;
}
#box2 li div {
min-width: 125px;
max-width: 500px;
}
.details {
color: gray;
margin-left: 19px;
margin-bottom: 15px;
}
h1 {
background: #100f10;
margin: 0;
}
.layout .icon {
display: inline-block;
font-size: 27px;
border: 2px solid lightgrey;
padding: 3px 7px;
width: 50px;
height: 50px;
border-radius: 25px;
text-align: center;
}
.layout .title {
padding: 4px 13px;
background: purple;
display: inline-block;
width: 360px;
margin: 0px 2px;
font-size: 27px;
position: relative;
top: 6px;
}
.weak {
color: #9c9c9c;
}
.head {
font-weight: 600;
}
.sub {
color: gray;
font-style: italic;
font-size: 13px;
}