forked from cs-dept-ibbul/Web2019
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlab2.css
More file actions
130 lines (100 loc) · 1.88 KB
/
Copy pathlab2.css
File metadata and controls
130 lines (100 loc) · 1.88 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
body {
margin:1;
}
header {
background-image: linear-gradient(rgba(0,0,0,.3),rgba(0,0,0,.3)), url(../images/head.jpg);
background-size: cover;
background-position: center;
height:500px;
display:flex;
align-items:center;
justify-content:center;
}
#title-text {
font-family: "Roboto slab", serif;
color:white;
font-size: 36px;
font-weight:normal;
width:780px;
text-align:center;
}
#profile {
display:flex;
align-items:center;
flex-direction:column;
width:100%;
}
#profile-pic {
background-image:url(../images/logo.jpg);
background-size:cover;
background-position:center;
border-radius:100%;
width:100px;
height:100px;
margin-top:-50px;
border:1px solid white;
}
#profile-text {
text-align:center;
font-family:"source sans pro", sans-serif;
font-size:18px;
color:rgb(51,51,51);
line-height:24px;
padding-bottom:10px;
border-bottom:2px solid #e6e6e6;
}
section {
display:flex;
justify-content:center;
align-items:center;
flex-direction:column;
}
#main-body {
width:66.67%;
position:relative;
}
.item-header {
font-family:"Roboto Slab",serif;
font-size:36px;
font-weight:bold;
color:rgb(51,51,51);
}
.paragraph-break {
height:20px;
background-color:pink;
}
.item-number-container {
position:absolute;
right:100%
}
.item-number {
position:absolute;
right:40px;
font-family:"Roboto slab", serif;
font-size:36px;
font-weight:normal;
color: rgba(51,51,51);
}
.item-text {
font-family:"Source Sans pro", sans-serif;
font-size:18px;
line-height:32px;
font-color:rgb(51,51,51);
margin:0px;
}
.item {
padding:60px 0px;
}
a {
color:#42b4d6;
text-decoration:none;
font-weight:normal;
font-family:"source Sans pro", sans-serif;
font-size: 18px;
}
a:hover {
text-decoration:underline;
}
img {
width:100%;
}