-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodeupdesignproject.css
More file actions
142 lines (125 loc) · 2.18 KB
/
codeupdesignproject.css
File metadata and controls
142 lines (125 loc) · 2.18 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
131
132
133
134
135
136
137
138
139
140
141
142
body{
background-color: lightgray;
/*box-sizing:border-box;*/
}
.pop{
width: 105px;
height: 105px;
-webkit-border-radius: 25px;
-moz-border-radius: 25px;
border-radius: 60px;
font-size: 15px;
color: white;
display: flex;
justify-content: center;
align-items: center;
}
.pop2{
width: 20px;
height: 20px;
-webkit-border-radius: 25px;
-moz-border-radius: 25px;
border-radius: 10px;
font-size: 13px;
color: black;
font-weight:bold;
display: flex;
justify-content: center;
align-items: center;
}
#circle {
background: #E6563b;
}
#circle2 {
background: #EB9D3A;
}
#circle3 {
background: #7CB06C;
}
#circle4 {
background: #00ABA9;
}
#smallerCircle {
background: #E6563b;
}
#smallerCircle2 {
background: #EB9D3A;
}
#smallerCircle3 {
background: #7CB06C;
}
#smallerCircle4 {
background: #00ABA9;
}
.circles{
display: flex;
flex-direction: row;
justify-content: center;
/*align-content: space-between;*/
}
.smallerCircles{
display: flex;
flex-direction: row;
justify-content: center;
float:right;
}
#circle, #circle2, #circle3, #circle4{
margin: 10px;
border: 6px solid white
}
.pageline{
border: 1px solid gray;
}
.smallerPhotos{
display: flex;
height:90px;
width:90px;
}
/*.col-xl-4 p {*/
/* display:flex;*/
/* flex-direction: row;*/
/*}*/
.words{
display: flex;
justify-content: center;
position: relative;
font-family: 'Anton', sans-serif;
font-size: 24px
}
h1,h3{
font-family: 'Anton', sans-serif;
}
h1{
font-size: 56px;
}
.lasttweet{
text-align: left;
}
.featured{
text-align: left;
position: static;
}
/*this media query below is for the small screen only*/
@media screen and (max-width:575px){
.col-xl-4{
display:none;
}
}
/*this media query is for small and medium screens takes away the right side of the screen*/
@media screen and (min-width: 575px) and (max-width: 1170px){
.col-xl-4{
display:none;
}
.col-xl-3{
display:none;
}
.circles{
display-flex:wrap;
}
}
.words{
}
.col-xl-6{
/*margin:1px;*/
/*width:100px;*/
}