forked from NSFL/webapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
75 lines (65 loc) · 1.05 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
a {
cursor: pointer;
}
body {
color: #333;
font-weight: 600;
font-family: Lato;
background-color: #eee;
}
.navbar {
background-color: #FFF;
padding: 0 10px;
border: 2px solid #999;
height: 60px;
display: flex;
align-items: center;
flex-wrap: wrap;
box-sizing: border-box;
justify-content: flex-start;
}
.navbarLeftContainer {
display: flex;
align-items: center;
flex-basis: 40%;
}
.profileImage {
border: 2px solid #999;
border-radius: 100%;
width: 40px;
height: 40px;
margin-right: 15px;
flex-wrap: nowrap;
}
.goCrushLogo {
/*flex-grow: 1;*/
display: flex;
justify-content: center;
font-size: 30px;
font-weight: bolder;
flex-basis: 20%;
}
.welcome {
text-align: center;
margin: 40px 0;
font-size: 30px;
font-weight: 900;
}
.bottomContainer {
display: flex;
padding: 0 50px;
}
.bottomContainer > div {
flex-basis: 50%;
}
.crushesNumberContainer {
display: flex;
align-items: flex-end;
margin: 30px 0;
}
.crushesNumberContainer .crushesNumber {
font-size: 90px;
line-height: 75px;
margin-right: 10px;
font-weight: 900;
}