-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyle.css
79 lines (59 loc) · 1.11 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: rgb(38 79 63);
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
header {
background-color: #2f3030;
}
.mainHeading, .ID{
color: #f39604;
margin-left: 15rem;
}
.mainHeading::first-letter,#mainHeadingSecond {
font-size: 2em;
}
.my-image {
width: 150px;
height: 150px;
border-radius: 50% 50%;
position: absolute;
top: 1em;
left: 2em;
}
section {
margin-top: 180px;
margin-left: 50px;
color: #fff;
}
section h2 {
font-weight: 500;
font-size: 1.5rem;
letter-spacing: 1px;
text-decoration: underline;
}
section div.assignment-list {
padding-left: 50px;
font-size: 1rem;
font-weight: 100;
}
.assignment-list a {
text-decoration: none;
color: #fff;
}
.assignment-list a:hover {
text-decoration: underline;
}
footer{
position: absolute;
width: 100%;
bottom: 5px;
text-align: center;
color: #FFD740;
font-size:small;
letter-spacing: 0.2rem;
}