-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
140 lines (113 loc) · 2.13 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
131
132
133
134
135
136
137
138
139
140
#container {
width: 100%;
}
.left-content {
width: 20%;
height:200vh;
background-color: rgb(29, 28, 29);
float: left;
}
.center-content {
width: 60%;
height: 200vh;
background-color: black;
float: left;
color: black;
}
/* tulisan BIODATA */
.center-content h1 {
text-align: center;
padding-bottom: 50px;
color: #ffffff;
}
/* GAMBAR PP */
.center-content img {
border-radius: 50%;
width: 400px;
height: 400px;
/* posisi gambar di tengah : */
display: block;
margin-left: auto;
margin-right: auto;
}
.center-content img:hover {
cursor: pointer;
}
.right-content {
width: 20%;
height: 200vh;
background-color: rgb(29, 28, 29);
float: left;
}
.text {
padding-top: 20px;
padding-left: 180px;
color: #ffffff;
}
.text h3{
font-family: 'Arial Narrow Bold', sans-serif;
font-size: 24px;
}
.text table {
font-size: 17px;
line-height: 28px;
}
/* pada perangkat max-width 1000px */
@media (max-width:1000px) {
.left-content {
width: 0%;
}
.center-content {
width: 100%;
}
.right-content {
width: 0%;
}
.text {
padding-top: 20px;
padding-left: 95px;
color: #ffffff;
}
}
/* pada perangkat max-width 678 */
@media (max-width:678px) {
.left-content {
width: 0%;
height: 200vh;
}
.center-content {
width: 110%;
height: 200vh;
}
.right-content {
width: 0%;
height: 200vh;
}
/* tulisan BIODATA */
.center-content h1 {
text-align: center;
padding-bottom: 50px;
color: #ffffff;
font-size: 30px;
}
/* GAMBAR PP */
.center-content img {
border-radius: 50%;
width: 250px;
height: 250px;
}
.text {
padding-top: 20px;
padding-left: 30px;
padding-right: 0px;
color: #ffffff;
}
.text h3{
font-family: 'Arial Narrow Bold', sans-serif;
font-size: 20px;
}
.text table {
font-size: 10px;
line-height: 28px;
}
}