-
Notifications
You must be signed in to change notification settings - Fork 0
/
inout.css
97 lines (91 loc) · 1.82 KB
/
inout.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
92
93
94
95
96
97
*{
margin: 0;
padding: 0;
font-family:'Gill Sans', 'Gill Sans MT', 'Calibri', 'Trebuchet MS', sans-serif;
font-size: 20px;
box-sizing: border-box;
}
.main{
width: 100%;
height: 1000px;
display: flex;
text-align: center;
}
.menu{
width: 20%;
height: 1000px;
background-color: #131315;
position: fixed;
}
.menu a{
text-decoration: none;
color: #fff;
font-size: 20px;
letter-spacing: 3px;
display: list-item;
padding: 20px;
border-top: 1px solid black;
border-bottom: 1px solid black
}
.menu a:hover{
background-color: #0effe7;
transition: 0.5s;
letter-spacing: 4px;
text-transform: uppercase;
}
.body{
width: 90%;
height: fit-content;
margin-left:300px;
margin-right: 0px;
background-color: #0b0b0b;
padding: 10px;
}
.body h4{
text-align: left;
font-family: 'Times New Roman', Times, serif;
}
h5{
padding: 20px;
font-size: 25px;
letter-spacing: 3px;
color: white;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
#cbullet{
margin-left: 50px;
text-align: left;
padding: 10px;
color: aliceblue;
}
#cbullet li{
padding: 5px;
}
.body h3{
letter-spacing: 2px;
margin-top: 10px;
text-align: center;
margin-left: 50px;
font-size: 25px;
color: rgb(11, 11, 11);
background: rgb(187, 197, 198);
margin-right: 50px;
}
.body h4{
letter-spacing: 1px;
text-align: left;
margin-left: 60px;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-size: 25px;
color: aliceblue;
}
.body footer{
padding: 10px;
font-size: 17px;
font-weight: bold;
text-align: center;
background: rgb(11, 11, 11);
color: rgb(254, 245, 245);
font-family: Arial, Helvetica, sans-serif;
letter-spacing: 1px;
}