-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
65 lines (52 loc) · 736 Bytes
/
styles.css
File metadata and controls
65 lines (52 loc) · 736 Bytes
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
nav a{
text-decoration: none;
color:#002e5b;
font-size: 18px;
transition: all 0.5s ease 0s;
}
#ass{
padding-right: 45px;
float: right;
}
#home{
padding-left: 45px;
float: left
}
#name{
font-size:20px;
color:#002e5b;
font-weight:bold;
float:center;
margin-left:5%;
}
header{
padding-top: 25px;
padding-bottom: 25px;
overflow:hidden;
background-color:#fde428;
}
body{
margin:0px;
padding:0px;
}
/* Grid styling learned on Geeksforgeeks */
.row {
display: flex;
}
.col {
flex: 1;
}
.blue {
background-color: #BADFE7;
}
.green {
background-color: #0a5bfe;
}
.beige {
background-color: #388087;
}
.picture img {
max-width: 100%;
max-height: 100%;
display: block
}