-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
108 lines (96 loc) · 2.16 KB
/
style.css
File metadata and controls
108 lines (96 loc) · 2.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
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
body {
font-family: Arial, Helvetica, sans-serif;
background-image: url(./techbackgroundsmaller.jpg);
background-repeat: no-repeat;
background-size: 2000px 1600px;
color: rgb(0, 195, 255);
margin: 0 auto;
}
/* What kind of selector is this? */
.logo {
width: 150px;
height: 150px;
margin: 3% 10%;
}
header {
display: grid;
grid-template-columns: 40% 60%;
width: 100%;
}
main {
height: auto;
width: 100%;
display: grid;
grid-template-columns: 30% 40% 30%;
}
/* This is an element within an element selector */
nav > a {
margin:1.5% 1.5%;
color: orange;
font-family: Arial, Helvetica, sans-serif;
font-size: 20px;
border-radius: 25px;
background: rgb(0, 195, 255);
padding: auto;
text-align: center;
border: 4px solid orange;
float: left;
line-height: 60px;
width: 400px;
height: 60px;
-webkit-transition: 1s ease-in-out;
-moz-transition: 1s ease-in-out;
-o-transition: 1s ease-in-out;
transition: 1s ease-in-out;
-webkit-transform: translate(3em,0);
-moz-transform: translate(3em,0);
-o-transform: translate(3em,0);
-ms-transform: translate(3em,0);
transform: translate(3em,0);
justify-content: flex-end;
}
/* This is an ID selector */
#profile-pic {
width: 400px;
height: 400px;
border-radius: 50%;
margin: auto;
grid-column: 2/3;
}
h1 {
color:rgb(0, 195, 255);
grid-column: 2/3;
margin: 3%;
border-bottom: 2px;
color: orange;
}
h2 {
grid-column: 2/3;
margin: 3%;
font-style: italic;
color: orange;
}
.small-text {
grid-column: 2/3;
color: orange;
font-size: 30px;
margin: 3% auto;
}
button {
grid-column: 2/3;
margin: 3%;
width: 725px;
height: 5px;
font-family: Arial, Helvetica, sans-serif;
font-size: 100px;
border-radius: 25px;
background : rgb(0, 195, 255);
fill-opacity: 100%;
padding: 10px;
padding-bottom: 5%;
text-align: center;
color: orange;
letter-spacing: 10px;
font-style: italic;
border: 4px solid orange;
}