-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
83 lines (76 loc) · 1.16 KB
/
main.css
File metadata and controls
83 lines (76 loc) · 1.16 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
html{
margin: 10px 50px 20px 150px;
padding: 0;
border: 0;
-webkit-text-size-adjust: 100%;
}
/* Layout */
body{
overflow: visible;
color: #fff;
background-color: #000;
font-size: 1 rem;
}
p{
font-family: Arial, Helvetica, sans-serif ;
}
/* TODO: experiment with different colors. */
h1{
color: blue;
}
ul{
text-decoration: none;
list-style-type: none;
}
a{
text-decoration: none;
}
/* Topography */
/* display */
.container{
display: flex;
width: 100%;
justify-content: space-evenly;
align-items: center;
/* flex-wrap: wrap; */
}
.container_abt{
display: flex;
flex-direction: row;
justify-content: space-between;
}
.container_abt div{
width: 50%;
}
.abt_title{
text-align: center;
padding-bottom: 20px;
}
.abt_p{
box-sizing: border-box;
}
.image_1{
width: 80%;
margin: 20px;
height: 100%;
}
.name{
font-size: 4em;
margin-top: 0;
color: blue;
}
.spn{
color: rgb(167, 50, 7);
font-size: 1.5em;
}
a:hover{
color: crimson;
text-decoration: none;
}
#email_btn{
color: #fff;
text-decoration: none;
}
#email_btn:hover{
color: blueviolet;
}