-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
156 lines (132 loc) · 2.52 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
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
143
144
145
146
147
148
149
150
151
152
153
154
155
html {
height: 100%;
width: 100%;
}
body{
background-image: url('img\\Background.jpg');
background-repeat: repeat;
margin: 0;
min-height: 100%;
}
a{
text-decoration: none;
}
p{
text-indent: 10%;
}
li{
padding-top: 5px;
}
.HeaderMain{
background-color: #0D98BA;
font-family: 'Courier New', Courier, monospace;
justify-content: space-between;
}
.HeaderNav{
background-color: aquamarine;
text-align: center;
padding: 10px;
font-weight: bold;
font-size: larger;
background-color: white;
}
.container{
margin-left: 20px;
margin-right: 20px;
width: auto;
height: auto;
}
.container-img{
display: flex;
justify-content: center; /* div-ul care contine poza cardului*/
vertical-align: middle;
}
.cardImg{
display: flex;
justify-content: center;
width: 80%;
border-radius: 8px;
}
.container-blue{
background-color: #0D98BA;
padding: 12px;
margin-right: 10px;
}
.card{
border: 3px solid black;
width: 60%;
padding: 10px;
margin: 15px;
background-color: antiquewhite; /* Pt fiecare din cele 3 carduri din Home */
display: flex;
box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
}
@media only screen and (max-width: 768px) {
.card{
width: 100%;
margin: 10px 0 10px 0;
align-self: normal;
}
}
.card-contact{
border: 3px solid black;
max-width: 260px;
padding: 10px;
margin: 15px;
background-color: antiquewhite;
display: flex;
flex-direction: column;
border-start-start-radius: 50px;
border-end-end-radius: 50px;
}
.content{
padding: 10px;
display: flex; /* Continutul principal din Home*/
flex-direction: column;
}
.active{
padding-right: 5%; /* Butoanele din nav */
}
.footImg{
height: 30px; /* Pentru linkurile cu poza din footer */
width: 30px;
}
.footEl{
margin: 10px;
}
.aboutPara{
padding-left: 5px; /* Paragrafele din sectiunea About*/
padding-right: 5px;
margin-left: 5px;
margin-right: 5px;
}
@media only screen and (max-width: 768px){
#w3-containter-img{
display: none;
}
}
footer{
display: flex;
background-color: white;
padding: 20px;
}
/* dog api page styles */
#dog_body{
background: black;
}
#canvas{
border: 3px solid white;
top: 50%;
left: 50%;
position: absolute;
transform: translate(-50%,-50%);
max-width: 70%;
}
#back_b{
position: absolute;
left: 20px;
bottom: 20px;
}
.dog_p{
color: white;
}