-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
115 lines (93 loc) · 1.66 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
body {
background-color: #A3223C;
padding: 100px;
justify-content: space-between;
border-radius: 80px;
color: white;
}
h2{
font-family: Verdana ;
}
#home {
font-family: Verdana ;
display: grid;
grid-template-columns: 1fr 1fr ;
padding-left: 80px;
}
#home #start {
display: grid;
grid-template-rows: 1fr 1fr 1fr 1fr ;
border-top: 1px solid white;
border-bottom: 1px solid white;
border-left: 1px solid white;
padding-left: 20px;
}
#home a {
text-decoration: none;
grid-column: 1/1;
font-size: 68px;
text-align: left;
color: white;
}
#home img {
grid-column: 2/2;
grid-row: 1/7;
max-height: 339px;
}
#home #second {
font-weight: bold;
}
#home #third {
font-weight: bold;
}
#first .about { display: none;}
#first:hover .hi { display: none;}
#first:hover .about {
display: inline;
margin-left: 10px;
}
#second .experience { display: none;}
#second:hover .i {display: none;}
#second:hover .experience {
display: inline;
margin-left: 10px;
}
#third .skills { display: none;}
#third:hover .am {display: none;}
#third:hover .skills {
display: inline;
margin-left: 10px;
}
#fourth .contact {display: none;}
#fourth:hover .douglas {display: none;}
#fourth:hover .contact {
display: inline;
margin-left: 10px;
}
li {
list-style-type: none;
}
#about {
text-align: left;
padding-right: 450px;
}
#about img {
}
#experience a{
color: white;
font-weight: bold;
}
#skills li {
margin-top: 10px;
}
#back img {
max-height: 25px;
}
#back #empty { display: none;}
#back:hover #full {display: none;}
#back:hover #empty {display: inline;}
#contact a{
color: white;
text-decoration: none;
font-weight: bold;
}