-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle2.css
120 lines (103 loc) · 1.67 KB
/
style2.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
body {
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
background-color: blanchedalmond;
}
body h1 {
font-family: Arial, Helvetica, sans-serif;
text-shadow: 2px 2px blueviolet;
}
.presentation {
font-family: Arial, Helvetica, sans-serif;
text-shadow: 2px 2px rgb(0, 0, 0);
color: rgb(0, 238, 255);
}
.techqueria {
font-family: Arial, Helvetica, sans-serif;
text-shadow: 2px 2px rgb(19, 121, 216);
color: rgb(230, 181, 141);
}
.tech {
height: 400px;
width: 400px;
}
.carousel {
border: 1px solid black;
width: 400px;
height: 400px;
overflow: hidden;
}
.display {
height: 400px;
width: 400px;
}
.slider {
height: 400px;
display: flex;
flex-direction: row;
width: 1200px;
transition: 1s;
}
.slide {
width: 400px;
height: 400px;
border: 1px solid black;
}
zs .navbar {
animation: slideIn 1s;
}
nav a:hover {
color: rgb(239, 4, 4);
}
nav a:active {
color: green;
}
nav a:visited {
color: rgb(255, 242, 0);
}
.navbar {
margin: 0;
padding: 0;
width: 100vw;
height: 40px;
/* overflow: hidden; */
background-color: black;
}
.navbar a {
display: block;
color: white;
padding: 14px 16px;
text-decoration: none;
}
.sidebar {
float: left;
}
@media screen and (min-width: 200px) and (max-width: 400px) {
nav a {
width: 100px;
/* top: 0; */
right: 480;
flex-direction: column;
color: purple;
}
.navbar {
right: 62%;
width: 150px;
height: 2000px;
position: absolute;
background-color: black;
}
div {
width: 200px;
}
}
@keyframes slideIn {
from {
transform: translateX(-100%);
}
to {
transform: translateX(0%);
}
}