forked from YasserDbeis/SoDA-Bootcamp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
130 lines (109 loc) · 2.18 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
.background {
background-color: #282C34;
}
.center {
margin: 0 auto;
width: auto;
height: auto;
text-align: center;
}
#intro_page_title {
color: #40AAF2;
}
.page-title {
font-size: 120px;
font-weight: bolder;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
text-align: center;
margin-top: 20px;
margin-bottom: 20px;
}
#ASU {
color: #EFAEC0;
font-weight: bolder;
}
.summary-content {
color: #FFFFFF;
font-size: 32px;
text-align: center;
font-weight: bold;
}
#profile_pic {
display: block;
height: 200px;
width: 200px;
border-radius: 20%;
}
#cursor {
color: #F8F8F0;
font-size: 100px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-weight: lighter;
vertical-align: text-top;
}
.toggle-button {
display: inline-block;
text-align: center;
text-transform: uppercase;
background: white;
border-radius: 6px;
transition: all 0.3s ease 0s;
font-size: 20px;
font-weight: bold;
padding: 15px;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-style: italic;
}
.toggle-button:hover {
border-radius: 50px;
transition: all 0.3s ease 0s;
cursor: pointer;
}
#projects_toggle {
border: 4px solid #8C1D40;
}
#projects_toggle:hover {
color: #8C1D40;
border-color: black;
}
#experience_toggle {
border: 4px solid #40AAF2;
}
#experience_toggle:hover {
color: #40AAF2;
border-color: black;
}
th, td {
padding: 20px;
border: 1px solid gray;
}
.experience-entry:hover {
background-color: #40AAF2;
}
#experience_table {
display: none;
width: 70%;
margin-top: 20px;
color: white;
}
.experience-title {
font-size: 30px;
width: 40%;
text-align: center;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.experience-desc {
font-size: 20px;
width: 60%;
font-family: 'Franklin Gothic', 'Arial Narrow', Arial, sans-serif;
}
.social-icons a {
text-decoration: none;
}
#back_button {
color: lightgray;
text-decoration: none;
}
#back_button:visited {
color: lightgray;
}