๐Ÿ“ฆ lilipops / calculator-denis

๐Ÿ“„ style.css ยท 86 lines
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* {
    margin: 0;
    padding: 0;
    background-color: white;
    position: relative;
}

h1 {
    overflow: hidden;
    padding: 1% 10%;
    color: white;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2vw;
    text-align: center;
    position: relative;
}
.hormigon {
    top: 20%;
    margin-left: 25%;
}
img {
    margin-top: 5%;
    width: 20%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.imgperforacion {
    width: 30%;
    margin-bottom: 3%;
}
p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.2vw;
    text-align: justify;
}
.container {
    align-items: center;
    justify-content: center;
  margin: auto;
  width: 50%;
  padding: 10px;
}
.description {
    margin: 7% 5% 5% 5%;
}
.description_2 {
    margin: 5%;
}
div {
    display:flexbox;
}
.mini-block {
    display: flex;
}
.d input {
    border: 1.5px solid orange;
}

@media screen and (max-width: 600px) {
    h1 {
        font-size: 1vw;
    }
    img {
        margin-top: 17%;
        width: 50%;
    }
    .container {
        width: 80%;
    }
    p {
        
        font-size: 3.8vw;
        letter-spacing: .3px;
        line-height: 1.4;
    }
    .description_2 {
        margin-top: 10%;
        font-size: 2.8vw;
    }
    .imgperforacion {
        width: 70%;
        margin-bottom: 3%;
    }
}