-
Notifications
You must be signed in to change notification settings - Fork 0
/
erstesProjekt.css
60 lines (55 loc) · 1.12 KB
/
erstesProjekt.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
body{
font-family: Arial, Helvetica, sans-serif;
background-color: rgb(200, 200, 200);
}
#div1{
width:600px;
height: 400px;
background-color: white;
font-family: 'Playfair Display', serif;;
/*font-style:italic;*/
font-size: 40px;
margin:auto;
margin-top: 50px;
border-radius: 5px;
border:1px solid gray;
padding:10px;
box-shadow: 0 0 5px rgb(255, 255, 255);
}
#klein_text{
/* text-shadow: -1px 1px 2px black;*/
font-size: 20px;
}
#gross_text{
color:#000000;
margin:0 0;
/* text-shadow: -1px 1px 2px black;*/
}
#div1 img{
display: block;
margin: 20px auto;
border-radius: 10px;
box-shadow: 0px 0px 10px black ;
}
#hi{
font-family: sans-serif;
font-size:18px;
text-align: center;
}
#container{
width: 80%;
height: 500px;
background-color: white;
padding: 15px;
margin: 40px auto;
overflow: auto;
border-radius: 5px;
box-shadow: 0 0 15px #000000;
}
a{
color:rgb(100, 100, 100);
padding: 5px;
}
a:hover{
text-shadow: 0 0 1px black;
}