-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
112 lines (110 loc) · 2.42 KB
/
main.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
html, body {
height:100%;
margin:0;
padding:0;
overflow: hidden;
}
.carousel, .item, .active {
height:100%;
}
.carousel-inner {
height:100%;
}
.carousel {
margin-bottom: 60px;
}
.carousel-caption {
z-index: 10;
}
.carousel .item {
background-color: #777;
}
.carousel .carousel-inner .bg {
background-repeat:no-repeat;
background-size:cover;
}
.carousel .carousel-inner .bg1 {
background-position: center top;
}
h1{
text-shadow: 2px 2px 1px red;
font-size: 50px;
}
p{
text-shadow: 2px 2px 1px blue;
font-size: 2px;
}
input[type=text] {
width: 130px;
box-sizing: border-box;
border: 2px solid #ccc;
border-radius: 4px;
font-size: 16px;
background-color: white;
background-image: url('Images/searchicon.png');
background-size: 20px;
background-position: 10px 13px;
background-repeat: no-repeat;
padding: 12px 20px 12px 40px;
-webkit-transition: width 0.4s ease-in-out;
transition: width 0.4s ease-in-out;
position: fixed;
top:10px;
left:0;
margin:20px;
}
input[type=text]:focus {
width: calc(100% - 40px);
}
#TutorialsHolder{
position: fixed;
top:100px;
left:0;
height:calc(100% - 140px);
width:100%;
display:flex;
flex-direction: column;
justify-content: space-around;
margin:0;
padding:0;
overflow: auto;
}
.card{
margin-top:20px;
}
#holderForHolder{
top:100px;
left:0;
width:100%;
margin:0;
padding:0;
}
#holderForHolder2{
top:100px;
left:0;
width:100%;
margin:0;
padding:0;
}
#TutorialsHolder2{
position: fixed;
top:100px;
left:0;
height:calc(100% - 140px);
width:100%;
display:flex;
flex-direction: column;
justify-content: space-around;
margin:0;
padding:0;
overflow: auto;
}
#intr{
background-color:rgba(250,250,250,0.8);
background-image: url("/Images/back.png");
background-repeat: no-repeat;
background-size: 90%;
background-origin: border-box;
background-position: center;
box-shadow: -2px -2px 2px orange;
}