-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
95 lines (83 loc) · 1.41 KB
/
style.css
File metadata and controls
95 lines (83 loc) · 1.41 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
*{
vertical-align: baseline;
font-weight: inherit;
font-family: inherit;
font-style: inherit;
font-size: 100%;
border: 0 none;
outline: 0;
padding: 0;
margin: 0;
}
h1{
background-color: rgb(207, 48, 53);
color: rgb(189,213,241);
font-size: x-large;
font-weight: bold;
height: 40px;
width: 954px;
padding: 10px 0px 0px 15px;
margin-bottom: 15px;
border-radius: 7px;
outline-width: 3px;
}
ul{
padding-left: 15px;
color: rgb(199, 205, 237);
}
a{
color: rgb(105, 211, 225);
}
p{
color: rgb(199, 205, 237);
padding: 8px 0;
}
h2{
color: rgb(199, 205, 237);
font-size: large;
font-weight: bold;
margin-top: 10px;
}
span{
color: rgb(125, 130, 250);
}
#container{
background-color: rgb(21, 51, 93);
width: 970px;
padding: 8px;
/* display: flex; */
}
#nav{
background-color: rgb(42, 125, 141);
border-radius: 15px;
height: 185px;
width: 165px;
padding: 15px 0 0 15px;
font-size: 80%;
display: inline-block;
}
#nav a{
font-weight: bold;
}
#main{
background-color: black;
width: 740px;
margin-left: 15px;
padding: 15px;
display: inline-block;
vertical-align: top;
border-radius: 15px;
font-size: 80%;
}
#main ul li{
margin-bottom: 5px;
}
#footer {
background-color: rgb(93, 103, 115);
font-size: 80%;
width: 938px;
padding: 15px;
border-radius: 15px;
margin-top: 15px;
font-weight: bold;
}