-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles1.css
103 lines (83 loc) · 1.52 KB
/
styles1.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
@import url(https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,300italic,700);
* {
margin: 0;
padding: 0;
font-family: "open sans Condensed";
color: rgba(65, 68, 73, 1);
}
.nav_bar {
background-color: rgba(128,128,128, 1);
padding: 15px;
position: fixed;
width: 100%;
}
.nav {
text-decoration: none;
color: rgba(255, 255, 255, 1);
float: right;
padding: 10px 10px 10px 10px;
margin: 0px 40px 0px 0px;
font-size: 22px;
}
.intro {
background-color: rgba(211, 9, 96, 1);
text-align: center;
padding-top: 200px;
}
.intro h2 {
font-size: 36px;
text-align: center;
margin-bottom: 40px;
}
.intro img {
border-radius: 50%;
width: 300px;
height: 300px;
}
.sum {
background-color: rgba(211, 9, 96, 1);
font-size: 20px;
padding: 50px 300px;
text-align: center;
}
.sum::first-letter {
font-weight: bold;
}
.exp, .edu, .pi {
text-align: center;
background-color: rgba(128,128,128, 0.1);
float: left;
width: 33.33%;
margin-top: 100px;
border-top: solid rgba(65, 68, 73, 1) thin;
border-bottom: solid rgba(65, 68, 73, 1) thin;
padding: 50px 0px 50px 0px;
}
h3 {
padding-bottom: 40px;
}
ul {
list-style: none;
}
.contact {
background-color: rgba(128,128,128, 1);
margin: 500px 0px 0px 0px;
padding: 50px;
font-size: 30px;
text-align: center;
}
.contact a {
color: rgba(255, 255, 255, 1);
text-decoration: none;
padding: 0px 20px 0px 20px;
}
i {
padding: 0px 20px 0px 30px;
}
footer {
background-color: rgba(128,128,128, 0.5);
position: relative;
}
a:hover {
color: rgba(211, 9, 96, 1);
}