-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
77 lines (70 loc) · 1.43 KB
/
main.css
File metadata and controls
77 lines (70 loc) · 1.43 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
/* Made by Tenzin Low (tenzinhl@uw.edu)*/
/* Header/Logo Title */
#header {
width: 100%;
padding: 10px;
text-align: center;
background: #63ddd3;
border-width: 0;
color: white;
font-family: Arial, Helvetica, sans-serif;
font-size: 30px;
display: flex;
flex-direction: row;
justify-content: space-around;
align-items: center;
}
/* Background image */
/* body {
background-image: url("images/Muted_Landscapes_Ridge_Still_Shift-HD.jpg");
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
} */
body {
background-color: whitesmoke;
background-image: url(images/my_lightning_transparent.png);
background-size: 120px;
/* Get nice default values for body */
margin: 0;
padding: 0;
border-width: 0;
}
#center-body {
font-family: Arial, Helvetica, sans-serif;
font-size: x-large;
background-color: white;
width: 800px;
padding: 30px 60px;
margin: 20px auto;
border-radius: 6%;
box-shadow: 5px 5px 30px black;
}
.header-link {
color: white;
}
a.header-link:hover {
color: rgb(255, 0, 0);
}
a.header-link:active {
color: lightblue;
}
/* Profile photo */
#profile-photo {
width: auto;
height: 50vh;
min-height: 3cm;
max-height: 10cm;
max-width: 100%;
border-radius: 50%;
/* center image */
display: block;
margin-left: auto;
margin-right: auto;
margin-top: 0px;
}
/* @media (min-height: 400px) {
.profile-photo {
max-height: 200px;
}
} */