forked from Itope84/github-activiewer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
105 lines (87 loc) · 1.38 KB
/
Copy pathstyle.css
File metadata and controls
105 lines (87 loc) · 1.38 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
.body{
width: 100%;
color: #fff;
min-height: 100vh;
background-image: url('dark-night-person-32237.jpg');
background-size: cover;
background-position: center;
font-family: 'Tajawal', sans-serif;
}
.overlay{
z-index: 0;
position: absolute;
top: 0;
left: 0;
width: 100%;
min-height: 100%;
background-color: rgba(0, 0, 0, 0.4);
}
.site-title{
font-weight: 700;
}
.main{
/*min-height: 70vh;*/
margin-bottom: 10vh;
}
#results{
color: #333;
margin-left: auto;
margin-right: auto;
margin-bottom: 10vh;
}
.content .list-group li{
border-left: none !important;
border-right: none !important;
border-radius: none !important;
}
.results-main{
width: 80%;
background-color: #fff;
border-radius: 5px;
margin-right: auto;
margin-left: auto;
}
.results-main .info-row{
border-bottom: 1px solid #ccc;
margin-bottom: 2rem;
}
.avatar{
width: 60px;
height: 60px;
overflow: hidden;
}
.avatar img{
width: 100%;
}
.main-form{
width: 80%;
max-width: 500px;
}
.main-form .form-group{
text-align: center;
}
h1{
font-size: 2.0rem;
}
h2{
font-size: 1.4rem;
}
.btn-lg.submit{
box-shadow: 2px 2px 4px #222;
transition-duration: 0.5s;
}
.btn-lg.submit:hover{
box-shadow: none;
/*background-color: inherit;*/
}
.footer{
position: absolute;
bottom: 0;
text-align: center;
width: 100%;
background-color: rgba(0, 0, 0, 0.4);
}
/*
.container, .footer{
z-index: 1;
}*/