This repository has been archived by the owner on Apr 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
79 lines (79 loc) · 1.39 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
body{
font-family: 'Roboto', sans-serif;
color: #37474F;
background-image: linear-gradient(to bottom right, #A5D6A7, #C5E1A5 ,#E6EE9C);
}
h1,h2,h3,h4,h5,h6{
font-family: 'Roboto Condensed', sans-serif;
}
a{
color: #3F51B5;
text-decoration: none;
}
img{
max-width: 100%;
}
.card{
background-color: rgba(236,239,241,0.6);
border-radius: 5px;
margin-bottom: 2%;
margin-top: 2%;
margin-left: 5%;
width: 80%;
padding: 1% 4% 3% 4%;
box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
transition: all 0.5s cubic-bezier(.25,.8,.25,1);
}
.card:hover{
box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
background-color: rgba(236,239,241,1);
}
.card img{
display: block;
margin-left: auto;
margin-right: auto;
}
.row{
overflow: hidden;
}
.centered{
text-align: center !important;
}
#info{
width: 60%;
float: left;
}
#infoPic{
float: left;
width: 18%;
padding: 0;
margin: 2% 4% 3% 2%;
}
#infoPic p{
padding: 0% 4% 0% 4%;
}
#title{
font-size: 3em;
margin: 5% 0% 0% 5%;
}
#infoPic img{
width: 100%;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}
#otus{
float: right;
}
#back{
float: left;
font-size: 2em;
margin: 5% ;
}
.menu{
font-size: 24px;
}
.cimg{
display: block;
margin-left: auto;
margin-right: auto;
}