-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
125 lines (100 loc) · 1.73 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: monaco,Consolas,Lucida Console,monospace;
}
p,h1,h2 {
color: white;
}
#fullpage{
text-align: center;
}
#header {
margin-top: -10%;
font-size: 150%;
}
#avatar img{
border-radius: 30%;
margin-top: 5%;
width: 250px;
}
#text1 {
margin-top: 5%;
margin-left: 25%;
width: 50%;
}
.sectitle {
margin-top: 0%;
font-size: 200%;
}
#aboutMeText {
margin-top: 2%;
width: 76%;
margin-left: 12%;
font-size: 140%;
}
#group_photo img{
margin-top: 2%;
border-radius: 3%;
width: 600px;
}
#skills {
border-collapse: collapse;
width: 70%;
margin-left: 15%;
margin-top: 10%;
}
#skills td, #skills th {
border: 1px solid #ddd;
padding: 8px;
}
#skills tr:nth-child(even){background-color: #f2f2f2;}
#skills tr:hover {background-color: #ddd;}
#skills th {
padding-top: 12px;
padding-bottom: 12px;
text-align: left;
background-color: #04AA6D;
color: white;
text-align: center;
}
#stay {
margin-bottom:10%;
}
@media only screen and (max-width: 400px)
{
#group_photo img{
width: 350px;
}
#header{
font-size: 100%;
}
#avatar img{
border-radius: 30%;
margin-top: 2%;
width: 150px;
}
.sectitle {
margin-top: 0%;
font-size: 100%;
}
#aboutMeText {
margin-top: 2%;
width: 80%;
margin-left: 10%;
font-size: 100%;
}
#skills {
border-collapse: collapse;
width: 30%;
margin-left: 0%;
margin-top: 3%;
}
}
.subtitle {
margin-top: 1%;
width: 76%;
margin-left: 12%;
font-weight: bold;
}